commit 19641245156fa4f9484c99f0b22423dca7fcfd89
parent a0d86982b100d2d305be3def0e13cf917f11b98c
Author: ecdsa <ecdsa@github>
Date: Sun, 21 Apr 2013 19:53:27 +0200
split seed words with newline too
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui/gui_classic.py b/gui/gui_classic.py
@@ -2355,7 +2355,7 @@ class ElectrumGui:
seed.decode('hex')
except:
try:
- seed = mnemonic.mn_decode( seed.split(' ') )
+ seed = mnemonic.mn_decode( seed.split() )
except:
QMessageBox.warning(None, _('Error'), _('I cannot decode this'), _('OK'))
return