From 6d2746ad75ca72f68f670b954caccef1606e759b Mon Sep 17 00:00:00 2001 From: DarkPhoenix Date: Sat, 27 Jul 2019 19:02:10 +0300 Subject: [PATCH] Reraise exception on import --- gui/graphFrame.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gui/graphFrame.py b/gui/graphFrame.py index e0afd6151..b0de2d293 100644 --- a/gui/graphFrame.py +++ b/gui/graphFrame.py @@ -62,6 +62,7 @@ except ImportError as e: Patch = mpl = Canvas = Figure = None graphFrame_enabled = False mplImported = False + raise except Exception: # We can get exceptions deep within matplotlib. Catch those. See GH #1046 tb = traceback.format_exc()