electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit e702b3312b071579c1f77e9c107801fd52cce9be
parent 914c115617b2543603ebe13bba0e520d4ecec91d
Author: ThomasV <thomasv@gitorious>
Date:   Tue, 29 Jul 2014 11:57:23 +0200

proper return from install wizard

Diffstat:
Mgui/qt/__init__.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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)