Created
June 16, 2016 20:05
-
-
Save jctanner/cf3426f7d0ce7a1498f0da47e0ccec6a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git diff | |
diff --git a/utilities/logic/async_wrapper.py b/utilities/logic/async_wrapper.py | |
index 34ddaf1..9caf422 100644 | |
--- a/utilities/logic/async_wrapper.py | |
+++ b/utilities/logic/async_wrapper.py | |
@@ -200,6 +200,7 @@ if __name__ == '__main__': | |
except SystemExit: | |
# On python2.4, SystemExit is a subclass of Exception. | |
# This block makes python2.4 behave the same as python2.5+ | |
+ raise | |
except Exception: | |
e = sys.exc_info()[1] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment