URI: 
       tfix #1344 - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit e2c19ff87109be409e4c3fcfec9c3c3064bf9ad7
   DIR parent 994717318343b2674b9a08e4534cf18bd952173b
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Sun,  5 Jul 2015 16:19:44 +0200
       
       fix #1344
       
       Diffstat:
         M lib/wallet.py                       |       4 +++-
       
       1 file changed, 3 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/lib/wallet.py b/lib/wallet.py
       t@@ -1463,8 +1463,10 @@ class Deterministic_Wallet(Abstract_Wallet):
            def get_master_public_keys(self):
                out = {}
                for k, account in self.accounts.items():
       +            if type(account) == ImportedAccount:
       +                continue
                    name = self.get_account_name(k)
       -            mpk_text = '\n\n'.join( account.get_master_pubkeys() )
       +            mpk_text = '\n\n'.join(account.get_master_pubkeys())
                    out[name] = mpk_text
                return out