split seed words with newline too

This commit is contained in:
ecdsa 2013-04-21 19:53:27 +02:00
parent a0d86982b1
commit 1964124515
1 changed files with 1 additions and 1 deletions

View File

@ -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