1
0

better errors

This commit is contained in:
ThomasV
2012-03-23 19:32:16 +01:00
parent 7d8f5e1aec
commit 22a0fdd492
3 changed files with 8 additions and 8 deletions

View File

@@ -77,7 +77,8 @@ if __name__ == '__main__':
found = wallet.file_exists
if not found:
found = gui.restore_or_create()
except SystemExit, e:
exit(e)
except BaseException, e:
import traceback
traceback.print_exc(file=sys.stdout)