URI: 
       tMerge pull request #361 from Wallacoloo/patch-1 - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit ff964df8ea30517b02bb795ec58d612dfb2e3294
   DIR parent 9c016a94e27f0849785b725acedb898ed1d24b23
  HTML Author: ThomasV <thomasv1@gmx.de>
       Date:   Tue,  5 Nov 2013 00:49:39 -0800
       
       Merge pull request #361 from Wallacoloo/patch-1
       
       Fixed indexing a function rather than calling it in WalletStorage.put
       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@@ -132,7 +132,7 @@ class WalletStorage:
                    if value is not None:
                        self.data[key] = value
                    else:
       -                self.data.pop[key]
       +                self.data.pop(key)
                    if save: 
                        self.write()