tfix #4078 - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit df6f950b2d10c9fb1090ee4a65326e45a580588e DIR parent 6f0a7ff42026966f7df8b3b8840f519e1b6b41e8 HTML Author: SomberNight <somber.night@protonmail.com> Date: Fri, 9 Mar 2018 01:47:56 +0100 fix #4078 Diffstat: M gui/qt/installwizard.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- DIR diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py t@@ -184,7 +184,8 @@ class InstallWizard(QDialog, MessageBoxMixin, BaseWizard): try: self.storage = WalletStorage(path, manual_upgrades=True) self.next_button.setEnabled(True) - except IOError: + except BaseException: + traceback.print_exc(file=sys.stderr) self.storage = None self.next_button.setEnabled(False) if self.storage: