URI: 
       tfix #1959 - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 7abd902b9233310231af81709dfc143d68cf8a39
   DIR parent 2512f5945ae0d00a570d24c52d179796ff4e0d2f
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Sat,  8 Oct 2016 08:34:24 +0200
       
       fix #1959
       
       Diffstat:
         M lib/keystore.py                     |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/lib/keystore.py b/lib/keystore.py
       t@@ -214,7 +214,7 @@ class Deterministic_KeyStore(Software_KeyStore):
                return d
        
            def has_seed(self):
       -        return self.seed != ''
       +        return bool(self.seed)
        
            def can_change_password(self):
                return not self.is_watching_only()