tfix #4075 - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 449734f3a0b8fb2396d88bf8b9fec2c6fb71d9f2 DIR parent c1d14b9677af4c58b47514901e4b8ae74b11d64b HTML Author: ThomasV <thomasv@electrum.org> Date: Thu, 8 Mar 2018 09:49:11 +0100 fix #4075 Diffstat: M gui/qt/console.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/gui/qt/console.py b/gui/qt/console.py t@@ -223,7 +223,7 @@ class Console(QtWidgets.QPlainTextEdit): exec(command, self.namespace, self.namespace) except SystemExit: self.close() - except Exception: + except BaseException: traceback_lines = traceback.format_exc().split('\n') # Remove traceback mentioning this file, and a linebreak for i in (3,2,1,-1):