commit dc810f131d17e14dea7c347e07021a0850b1640a
parent 2ac815e669e05b0c9c35f8af52dc49227205efaa
Author: ThomasV <thomasv@electrum.org>
Date: Mon, 7 Dec 2020 10:53:53 +0100
kivy: wizard does not need Factory
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/electrum/gui/kivy/main_window.py b/electrum/gui/kivy/main_window.py
@@ -641,7 +641,7 @@ class ElectrumWindow(App, Logger):
def on_open_wallet(self, password, storage):
if not storage.file_exists():
- wizard = Factory.InstallWizard(self.electrum_config, self.plugins)
+ wizard = InstallWizard(self.electrum_config, self.plugins)
wizard.path = storage.path
wizard.run('new')
else: