Skip to content
This repository has been archived by the owner on Feb 3, 2020. It is now read-only.

Commit

Permalink
fix return codes in escape manager
Browse files Browse the repository at this point in the history
  • Loading branch information
baverman committed Nov 13, 2011
1 parent 1c7133a commit 9402079
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions uxie/escape.py
Expand Up @@ -33,6 +33,6 @@ def process(self):
_, _, obj = self.escape_stack.pop()
if obj.is_active():
obj.cancel()
return False
return True

return True
return False
2 changes: 1 addition & 1 deletion uxie/utils.py
Expand Up @@ -131,4 +131,4 @@ def inner(*args, **kwargs):

return func(*args, **kwargs)

return inner
return inner

0 comments on commit 9402079

Please sign in to comment.