URI: 
       tadd timeout in order to allow KeyboardInterrupt - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 742705b8559a77b6c9bcc7a21b3cab700668eea8
   DIR parent 12e2b8db16eebd4f647361913c20edfe8dcc3bcb
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Sat, 19 May 2012 15:52:06 +0200
       
       add timeout in order to allow KeyboardInterrupt
       
       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@@ -956,7 +956,7 @@ class Wallet:
        
            def update(self):
                self.interface.poke()
       -        self.up_to_date_event.wait()
       +        self.up_to_date_event.wait(10000000000)
        
        
            def start_session(self, interface):