Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
barseghyanartur committed Dec 22, 2019
1 parent 5215c95 commit b761ddc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/matyan/fetchers/jira.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ def fetch_issue_data(self, issue_id: str) -> Dict[str, str]:
'title': issue['fields']['summary'],
'description': issue['fields']['description'],
}
except TypeError as err:
except (TypeError, KeyError) as err:
return {}

0 comments on commit b761ddc

Please sign in to comment.