Skip to content

Commit

Permalink
Hack to let task-2.4.x search for url UDAs.
Browse files Browse the repository at this point in the history
As discussed in ralphbean/taskw#87.
  • Loading branch information
ralphbean committed Jan 26, 2015
1 parent 4627942 commit ae3db7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bugwarrior/db.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def find_local_uuid(tw, keys, issue, legacy_matching=True):
for service, key_list in six.iteritems(keys):
if any([key in issue for key in key_list]):
results = tw.filter_tasks({
'and': [(key, issue[key]) for key in key_list],
'and': [("%s.is", issue[key]) for key in key_list],
'or': [
('status', 'pending'),
('status', 'waiting'),
Expand Down

0 comments on commit ae3db7d

Please sign in to comment.