From f9b28aaae32a41c78c3f8a0f40760e6d9c80c49e Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Thu, 16 Jun 2016 12:21:57 -0700 Subject: [PATCH] Fix exception handling in async_wrapper --- utilities/logic/async_wrapper.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utilities/logic/async_wrapper.py b/utilities/logic/async_wrapper.py index fd7699d17ac..d6100ba6d0f 100644 --- a/utilities/logic/async_wrapper.py +++ b/utilities/logic/async_wrapper.py @@ -202,11 +202,11 @@ 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+ - e = get_exception() + e = sys.exc_info()[1] sys.exit(e.code) except Exception: - e = get_exception() + e = sys.exc_info()[1] notice("error: %s"%(e)) print(json.dumps({ "failed" : True,