From 6acb4695a445316fa11f4cd9ba8fdc71bd9c9a5d Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Wed, 18 Jan 2017 20:19:55 -0500 Subject: [PATCH] Pesky None. --- bugwarrior/services/jira.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bugwarrior/services/jira.py b/bugwarrior/services/jira.py index 7c2618666..b603c25c3 100644 --- a/bugwarrior/services/jira.py +++ b/bugwarrior/services/jira.py @@ -288,8 +288,7 @@ def validate_config(cls, config, target): IssueService.validate_config(config, target) def annotations(self, issue, issue_obj): - comments = self.jira.comments(issue.key) - + comments = self.jira.comments(issue.key) or [] return self.build_annotations( (( comment.author.name,