From f91405ef1bbd623c2158c67b4324de9ffb454e29 Mon Sep 17 00:00:00 2001 From: Martyn Gigg <martyn.gigg@gmail.com> Date: Wed, 23 Jan 2019 12:47:57 +0000 Subject: [PATCH] Catch RuntimeError also in qt resources import Python 3 generates an RuntimeError regarding the mix of PyQt4/PyQt5 rather than an ImportError from IPython in Python 2. --- scripts/ErrorReporter/errorreport.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ErrorReporter/errorreport.py b/scripts/ErrorReporter/errorreport.py index 70cfe3243a1..8acec4d2be1 100644 --- a/scripts/ErrorReporter/errorreport.py +++ b/scripts/ErrorReporter/errorreport.py @@ -9,7 +9,7 @@ from qtpy.QtCore import Signal try: from ErrorReporter import resources_qt5 # noqa -except ImportError: +except (ImportError, RuntimeError): from ErrorReporter import resources_qt4 # noqa from mantidqt.utils.qt import load_ui -- GitLab