mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-30 08:51:32 +00:00
fix #4078
This commit is contained in:
parent
6f0a7ff420
commit
df6f950b2d
1 changed files with 2 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue