URI: 
       tfix #4108 - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 0603f9f2b4c6e23fbe9dc0bf79803a86f9aea9e5
   DIR parent a048a00594f00da0cd800b9b25a8a2cde341db1e
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Mon, 12 Mar 2018 10:18:09 +0100
       
       fix #4108
       
       Diffstat:
         M lib/base_wizard.py                  |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/lib/base_wizard.py b/lib/base_wizard.py
       t@@ -164,7 +164,7 @@ class BaseWizard(object):
                    k = keystore.Imported_KeyStore({})
                    self.storage.put('keystore', k.dump())
                    w = Imported_Wallet(self.storage)
       -            for x in text.split():
       +            for x in keystore.get_private_keys(text):
                        w.import_private_key(x, None)
                    self.keystores.append(w.keystore)
                else: