From 0d6d7b9badb8930ed0171fff1c54bd72692ca3a5 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Mon, 24 Sep 2018 16:24:11 +1000 Subject: [PATCH] print early tracebacks to console --- aqt/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aqt/__init__.py b/aqt/__init__.py index edb0d3006..f373ed8a7 100644 --- a/aqt/__init__.py +++ b/aqt/__init__.py @@ -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())