From e702b3312b071579c1f77e9c107801fd52cce9be Mon Sep 17 00:00:00 2001 From: ThomasV Date: Tue, 29 Jul 2014 11:57:23 +0200 Subject: [PATCH] proper return from install wizard --- gui/qt/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/qt/__init__.py b/gui/qt/__init__.py index 036be209d..23bef702d 100644 --- a/gui/qt/__init__.py +++ b/gui/qt/__init__.py @@ -159,7 +159,7 @@ class ElectrumGui: wizard = installwizard.InstallWizard(self.config, self.network, storage) wallet = wizard.run(action) if not wallet: - exit() + return else: wallet.start_threads(self.network)