URI: 
       tfix issue with restore from old seed - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 00eb39a5601898747ad3cb7da817a76d84402934
   DIR parent 31f41b3d9416cab6922656e35867dd5964005d4e
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Wed,  5 Oct 2016 07:08:45 +0200
       
       fix issue with restore from old seed
       
       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@@ -276,7 +276,7 @@ class BaseWizard(object):
                        f = lambda passphrase: self.run('create_keystore', seed, passphrase)
                        self.passphrase_dialog(run_next=f) if is_ext else f('')
                    elif seed_type == 'old':
       -                self.run('create_keystore', seed, passphrase)
       +                self.run('create_keystore', seed, '')
                    elif seed_type == '2fa':
                        if self.is_kivy:
                            self.show_error('2FA seeds are not supported in this version')