From 2d3df982eb868ca3edb5cfb68687bae78ddbdf32 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Thu, 21 Aug 2014 19:13:26 +0200 Subject: [PATCH] fix wizard --- gui/qt/installwizard.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py index 67d7a14f3..abab24f82 100644 --- a/gui/qt/installwizard.py +++ b/gui/qt/installwizard.py @@ -373,21 +373,22 @@ class InstallWizard(QDialog): if action == 'new': action, wallet_type = self.restore_or_create() + if action == 'create': + self.storage.put('wallet_type', wallet_type) + if action is None: return + if action == 'restore': wallet = self.restore(wallet_type) if not wallet: return action = None - elif action == 'create': - self.storage.put('wallet_type', wallet_type) + else: wallet = Wallet(self.storage) action = wallet.get_action() # fixme: password is only needed for multiple accounts password = None - else: - raise BaseException('unknown action') while action is not None: util.print_error("installwizard:", wallet, action)