1
0

plugins: call load_wallet in install wizard

This commit is contained in:
ThomasV
2015-06-10 12:40:08 +02:00
parent 479a6f84e7
commit 060e3aa23e
5 changed files with 12 additions and 5 deletions

View File

@@ -63,9 +63,11 @@ def init_plugins(config, is_local, gui_name):
def constructor(name, storage):
if plugins.get(name) is None:
try:
print_error(_("Loading plugin by constructor:"), name)
p = loader(name)
plugins[name] = p.Plugin(config, name)
except:
print_msg(_("Error: cannot initialize plugin"), name)
return
return plugins[name].constructor(storage)