diff options
author | bloodstalker <thabogre@gmail.com> | 2018-05-22 02:40:47 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2018-05-22 02:40:47 +0000 |
commit | ac26d1d300240e18282b9dc474e53e8b9b991c3f (patch) | |
tree | abd3a2e222acf78eb59cd80ebac874f308025aca | |
parent | fix (diff) | |
download | kaminokumo-ac26d1d300240e18282b9dc474e53e8b9b991c3f.tar.gz kaminokumo-ac26d1d300240e18282b9dc474e53e8b9b991c3f.zip |
update
-rwxr-xr-x | kaminokumo | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -51,7 +51,9 @@ def main(): if argparser.args.dbg: try: premain(argparser) - except: + except Exception as e: + print(e.__doc__) + if e.message: print(e.message) variables = globals().copy() variables.update(locals()) shell = code.InteractiveConsole(variables) |