From 2b10ccdcc47fe0f45c7e9c5baf52ff3ada78afb0 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Fri, 5 Sep 2014 16:31:57 +0200 Subject: [PATCH] fix --- lib/wallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/wallet.py b/lib/wallet.py index a6b5dbfe7..3e16ead77 100644 --- a/lib/wallet.py +++ b/lib/wallet.py @@ -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: