Skip to content

Commit

Permalink
Further limit which tasks are returned to only actionable items.
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Coddington committed Oct 9, 2014
1 parent 8297f18 commit 6e8333e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion bugwarrior/services/versionone.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,11 @@ def get_meta(self):
def get_assignments(self, username):
meta = self.get_meta()
where = {
'IsCompleted': False
'IsClosed': False,
'IsCompleted': False,
'IsDead': False,
'IsDeleted': False,
'IsInactive': False,
}
if self.timebox_name:
where['Parent.Timebox.Name'] = self.timebox_name
Expand Down

0 comments on commit 6e8333e

Please sign in to comment.