Browse Source

(trivial) follow-up 570f7b7790

hard-fail-on-bad-server-string
SomberNight 5 years ago
parent
commit
e53ce5dee0
No known key found for this signature in database GPG Key ID: B33B5F232C6271E9
  1. 2
      electrum/gui/qt/installwizard.py

2
electrum/gui/qt/installwizard.py

@ -304,7 +304,7 @@ class InstallWizard(QDialog, MessageBoxMixin, BaseWizard):
_('If you use a passphrase, make sure it is correct.'))
self.reset_stack()
return self.select_storage(path, get_wallet_from_daemon)
except UserCancelled:
except (UserCancelled, GoBack):
raise
except BaseException as e:
self.logger.exception('')

Loading…
Cancel
Save