Use sys.exc_info() for exception msg in Python 2/3
This commit is contained in:
parent
f2ca461638
commit
914d5e38f1
1 changed files with 2 additions and 2 deletions
4
wscript
4
wscript
|
@ -615,6 +615,6 @@ def shutdown ():
|
||||||
command += ' ' + relfolder + os.sep + APPNAME + os.sep + APPNAME
|
command += ' ' + relfolder + os.sep + APPNAME + os.sep + APPNAME
|
||||||
print (command)
|
print (command)
|
||||||
Utils.exec_command (command)
|
Utils.exec_command (command)
|
||||||
# except Exception as msg:
|
except Exception:
|
||||||
except Exception, msg:
|
msg = sys.exc_info()[1] # Python 2/3 compatibility
|
||||||
Utils.pprint ('RED', "Failed to run application: " + str (msg))
|
Utils.pprint ('RED', "Failed to run application: " + str (msg))
|
||||||
|
|
Loading…
Reference in a new issue