Skip to content

Commit

Permalink
Merge pull request #39 from lhh/release_0_8_1
Browse files Browse the repository at this point in the history
Release 0.8.1
  • Loading branch information
lhh authored Mar 8, 2024
2 parents 9637aec + 7fb762c commit 79936ea
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: jirate
Version: 0.8.0
Version: 0.8.1
Summary: Python CLI for JIRA and Trello
Author: Lon Hohberger
Author-email: [email protected]
Expand Down
2 changes: 1 addition & 1 deletion jirate/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/python3

__version__ = '0.8.0'
__version__ = '0.8.1'
2 changes: 1 addition & 1 deletion jirate/jira_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def print_issues_by_state(issue_list, args=None):
hbar_under(key)
for issue in states[key]:
print(' ', issue.key, end=' ')
if args and args.labels:
if args and hasattr(args, 'labels') and args.labels:
print_labels(issue.raw, prefix='')
print(issue.raw['fields']['summary'])
print()
Expand Down

0 comments on commit 79936ea

Please sign in to comment.