This commit is contained in:
ThomasV 2014-09-05 16:31:57 +02:00
parent 622fb6c08b
commit 2b10ccdcc4
1 changed files with 1 additions and 1 deletions

View File

@ -1599,7 +1599,7 @@ class Wallet(object):
run_hook('add_wallet_types', wallet_types)
wallet_type = storage.get('wallet_type')
if wallet_type:
for t, l, WalletClass in wallet_types:
for cat, t, name, WalletClass in wallet_types:
if t == wallet_type:
return WalletClass(storage)
else: