Skip to content

Commit

Permalink
bz: handle open-ended needinfo requests
Browse files Browse the repository at this point in the history
If anyone can provide it, also match it.
  • Loading branch information
mathstuf committed Oct 27, 2015
1 parent 5bee1c4 commit 3106350
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bugwarrior/services/bz.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ def issues(self):

needinfos = filter(lambda f: ( f['name'] == 'needinfo'
and f['status'] == '?'
and f['requestee'] == self.username),
and f.get('requestee', self.username) == self.username),
issue['flags'])
if needinfos:
last_mod = needinfos[0]['modification_date']
Expand Down

0 comments on commit 3106350

Please sign in to comment.