URI: 
       tsplit seed words with newline too - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 19641245156fa4f9484c99f0b22423dca7fcfd89
   DIR parent a0d86982b100d2d305be3def0e13cf917f11b98c
  HTML Author: ecdsa <ecdsa@github>
       Date:   Sun, 21 Apr 2013 19:53:27 +0200
       
       split seed words with newline too
       
       Diffstat:
         M gui/gui_classic.py                  |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/gui/gui_classic.py b/gui/gui_classic.py
       t@@ -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