print early tracebacks to console

This commit is contained in:
Damien Elmes 2018-09-24 16:24:11 +10:00
parent 6e9276e5a3
commit 0d6d7b9bad

View File

@ -258,6 +258,7 @@ def run():
try:
_run()
except Exception as e:
traceback.print_exc()
QMessageBox.critical(None, "Startup Error",
"Please notify support of this error:\n\n"+
traceback.format_exc())