Skip to content

Commit

Permalink
Fix a bug in eventlet.Event
Browse files Browse the repository at this point in the history
  • Loading branch information
fjarri committed Jan 9, 2021
1 parent 2fd5eb0 commit 5286c1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pykka/eventlet.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def wait(self, timeout=None):
raise
return False
else:
self.event.wait()
super().wait()

return True

Expand Down

0 comments on commit 5286c1b

Please sign in to comment.