tproper return from install wizard - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit e702b3312b071579c1f77e9c107801fd52cce9be DIR parent 914c115617b2543603ebe13bba0e520d4ecec91d HTML Author: ThomasV <thomasv@gitorious> Date: Tue, 29 Jul 2014 11:57:23 +0200 proper return from install wizard Diffstat: M gui/qt/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/gui/qt/__init__.py b/gui/qt/__init__.py t@@ -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)