mirror of
https://github.com/ankitects/anki.git
synced 2025-09-25 01:06:35 -04:00
print early tracebacks to console
This commit is contained in:
parent
6e9276e5a3
commit
0d6d7b9bad
1 changed files with 1 additions and 0 deletions
|
@ -258,6 +258,7 @@ def run():
|
||||||
try:
|
try:
|
||||||
_run()
|
_run()
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
traceback.print_exc()
|
||||||
QMessageBox.critical(None, "Startup Error",
|
QMessageBox.critical(None, "Startup Error",
|
||||||
"Please notify support of this error:\n\n"+
|
"Please notify support of this error:\n\n"+
|
||||||
traceback.format_exc())
|
traceback.format_exc())
|
||||||
|
|
Loading…
Reference in a new issue