From 0a0186bc5d8aeec4793665b679627dcce18e8075 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Thu, 1 May 2014 14:55:29 +0200 Subject: [PATCH] parameter for wizard.run --- gui/qt/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index bbd7d031..981c1b3e 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -262,7 +262,7 @@ class ElectrumWindow(QMainWindow): return wizard = installwizard.InstallWizard(self.config, self.network, storage) - wallet = wizard.run() + wallet = wizard.run('new') if wallet: self.load_wallet(wallet)