Skip to content

Commit

Permalink
Fix ticket inclusion logic for #79.
Browse files Browse the repository at this point in the history
  • Loading branch information
ralphbean committed Sep 24, 2013
1 parent 8feb690 commit 263da56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bugwarrior/services/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ def include(self, issue):
elif only_if_assigned and not also_unassigned:
return self.get_owner(issue) in [only_if_assigned]
elif not only_if_assigned and also_unassigned:
return self.get_owner(issue) in [None]
return True
elif not only_if_assigned and not also_unassigned:
return self.get_owner(issue) in [None]
return True
else:
pass # Impossible to get here.

Expand Down

2 comments on commit 263da56

@visibilityspots
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That did the trick! Alright. Ralph you just made my day. Thank you very much for your fast help on this. I only need to import my redmine issues now and then I have all my tasks in only 1 central place.

You are my hero of the day :) thanks!

@ralphbean
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yay! :)

Please sign in to comment.