tfix - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 2b10ccdcc47fe0f45c7e9c5baf52ff3ada78afb0 DIR parent 622fb6c08b32383e91f0c42833d46814a187d4c3 HTML Author: ThomasV <thomasv@gitorious> Date: Fri, 5 Sep 2014 16:31:57 +0200 fix Diffstat: M lib/wallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/lib/wallet.py b/lib/wallet.py t@@ -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: