You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#jira-cli new --type=FOO --project=BAR "Test ticket"
.... Traceback (most recent call last): File "/home/jonathan/.local/bin/jira-cli", line 8, in <module> sys.exit(cli()) File "/home/jonathan/.local/lib/python2.7/site-packages/jiracli/interface.py", line 272, in cli return post_args.cmd(jira, post_args).execute() File "/home/jonathan/.local/lib/python2.7/site-packages/jiracli/processor.py", line 30, in execute return self.eval() File "/home/jonathan/.local/lib/python2.7/site-packages/jiracli/processor.py", line 251, in eval self.args.issue_reporter, self.args.labels, components, **extras File "/home/jonathan/.local/lib/python2.7/site-packages/jiracli/bridge/__init__.py", line 45, in format_issue )["name"] TypeError: 'NoneType' object has no attribute '__getitem__'
I verified the tickets are getting created but its failing when trying to format the issue response.
The text was updated successfully, but these errors were encountered:
~/.local/lib/python2.7/site-packages/jiracli/bridge/init.py - def format_issue,
JiraBridge.object_from_key returns None because the issue number (issue.setdefault('status','1') is not found in the list of statuses (self.get_statuses()).
#jira-cli new --type=FOO --project=BAR "Test ticket"
....
Traceback (most recent call last): File "/home/jonathan/.local/bin/jira-cli", line 8, in <module> sys.exit(cli()) File "/home/jonathan/.local/lib/python2.7/site-packages/jiracli/interface.py", line 272, in cli return post_args.cmd(jira, post_args).execute() File "/home/jonathan/.local/lib/python2.7/site-packages/jiracli/processor.py", line 30, in execute return self.eval() File "/home/jonathan/.local/lib/python2.7/site-packages/jiracli/processor.py", line 251, in eval self.args.issue_reporter, self.args.labels, components, **extras File "/home/jonathan/.local/lib/python2.7/site-packages/jiracli/bridge/__init__.py", line 45, in format_issue )["name"] TypeError: 'NoneType' object has no attribute '__getitem__'
I verified the tickets are getting created but its failing when trying to format the issue response.
The text was updated successfully, but these errors were encountered: