Skip to content

Commit

Permalink
Fix json output for specific issue numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
egegunes committed Jul 7, 2019
1 parent 8e8affe commit cc4a146
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redmine/cli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def issues(ctx, redmine, issue_ids, **kwargs):
kwargs.update(ctx.parent.params)

if issue_ids:
kwargs = {"issue_id": ",".join(issue_ids)}
kwargs.update({"issue_id": ",".join(issue_ids)})

try:
issues = redmine.get_issues(**kwargs)
Expand Down

0 comments on commit cc4a146

Please sign in to comment.