Skip to content

Commit

Permalink
Presenting it better
Browse files Browse the repository at this point in the history
  • Loading branch information
gcarrarom committed Apr 23, 2021
1 parent 7afecba commit 6276f72
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion get/issues.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def get_issues(output, user, include_closed, show_query, project,
to_add.append(issue['key'] if not show_url else "https://jira.finastra.com/browse/" + issue['key'])
to_add.append(issue['fields']['summary'])
to_add.append(issue['fields']['status']['statusCategory']['name'])
if issue['fields'].get('assignee'): to_add.append(issue['fields']['assignee']['displayName'] + "(" + issue['fields']['assignee']['key'] + ")")
if issue['fields'].get('assignee'): to_add.append(issue['fields']['assignee']['displayName'] + "(" + issue['fields']['assignee']['name'] + ")")
if issue['fields'].get('customfield_12800') and all_sprints:
to_add.append(re.findall('(?:name=)(.*)(?:,startDate)', issue['fields']['customfield_12800'][0])[0])
if show_story_points:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='fancy-jira',
version='0.0.4',
version='0.0.5',
author='Gui Martins',
url='https://fancywhale.ca/',
author_email='[email protected]',
Expand Down

0 comments on commit 6276f72

Please sign in to comment.