tfix #2819 - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 1394346192fadd7832e68ecce7e1af14fa6a1595 DIR parent fbe27fce045d5b44a71a6612716ded9103ed77dd HTML Author: ThomasV <thomasv@electrum.org> Date: Wed, 30 Aug 2017 06:38:57 +0200 fix #2819 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@@ -706,7 +706,7 @@ def from_seed(seed, passphrase): def from_private_key_list(text): keystore = Imported_KeyStore({}) - for x in text.split(): + for x in get_private_keys(text): keystore.import_key(x, None) return keystore