Skip to content

Commit

Permalink
fix: sprint view if no assignee
Browse files Browse the repository at this point in the history
  • Loading branch information
Benoit Latinier committed Oct 29, 2014
1 parent d5ad2c9 commit 474c856
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jiracli
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ def sprint(project):

content = [[issue.key,
issue.fields.status.name,
issue.fields.assignee.name,
issue.fields.assignee.name if issue.fields.assignee else "Nobody",
issue.fields.summary[:80]] for issue in issues]
import tabulate
print(tabulate.tabulate(content,
Expand Down

0 comments on commit 474c856

Please sign in to comment.