commit 0a56d0b4213081b4713df0cfdfcad0cff89e2430
parent 539df78c30187d6e82ca6dc0e3e98c5bf32d3c49
Author: nolash <dev@holbrook.no>
Date: Tue, 30 Jun 2020 00:39:17 +0200
Fix show header expectation
Diffstat:
4 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/CHANGELOG b/CHANGELOG
@@ -1,3 +1,5 @@
+* 0.2.1
+ - Fix non-committed headers flag
* 0.2.0
- Rename raw flag to headers
* 0.1.4
diff --git a/VERSION b/VERSION
@@ -1 +1 @@
-0.2.0
+0.2.1
diff --git a/feedwarrior/cmd/show.py b/feedwarrior/cmd/show.py
@@ -42,7 +42,7 @@ def execute(config, feed, args):
print('----')
if body != None:
- if args.r:
+ if args.headers:
for k in m.keys():
print('{}: {}'.format(k, m.get(k)))
print('{} - {}'.format(ts, j['uuid']))
diff --git a/setup.py b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
setup(
name='feedwarrior',
- version='0.2.0',
+ version='0.2.1',
description='feeds, warrior style',
author='Louis Holbrook',
author_email='dev@holbrook.no',