tminor fix - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 0c8c21f64d513a7c5be8f27e8a822b5b54b3472c DIR parent 65d0560475242e600ebd14cca0474ddc98e49485 HTML Author: ThomasV <thomasv@gitorious> Date: Fri, 5 Sep 2014 12:08:09 +0200 minor 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@@ -100,7 +100,7 @@ class WalletStorage(object): except Exception: raise IOError("Cannot read wallet file.") self.data = {} - for k, v in d.items(): + for key, value in d.items(): try: json.dumps(key) json.dumps(value)