URI: 
       tfix issue in f307b18546c2fddb7f0ae8c817fe0a65890a9133 - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit fdd43bd5ad7f0240bfbeafc395cc7eaf673adfbc
   DIR parent f307b18546c2fddb7f0ae8c817fe0a65890a9133
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Wed, 24 Jun 2015 09:35:54 +0200
       
       fix issue in f307b18546c2fddb7f0ae8c817fe0a65890a9133
       
       Diffstat:
         M lib/network.py                      |       4 +++-
       
       1 file changed, 3 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/lib/network.py b/lib/network.py
       t@@ -548,7 +548,9 @@ class Network(util.DaemonThread):
                        # If not finished, get the next header
                        if next_height in [True, False]:
                            self.bc_requests.popleft()
       -                    if not next_height:
       +                    if next_height:
       +                        self.notify('updated')
       +                    else:
                                interface.print_error("header didn't connect, dismissing interface")
                                interface.stop()
                        else: