URI: 
       tfollow-up previous commit - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 94988bd3f70949b531ed92935f5b798c0a9e8302
   DIR parent 121ac07b0106bbfcdb86ad9a1b1921257d22da5f
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Fri, 30 Sep 2016 01:19:29 +0200
       
       follow-up previous commit
       
       Diffstat:
         M gui/qt/installwizard.py             |       4 +++-
       
       1 file changed, 3 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py
       t@@ -313,7 +313,9 @@ class InstallWizard(QDialog, MessageBoxMixin, BaseWizard):
                    _('If you lose your seed, your money will be permanently lost.'),
                    _('To make sure that you have properly saved your seed, please retype it here.')
                ])
       -        seed, is_bip39, is_pass = self.seed_input(title, message, test)
       +        self.opt_ext = False
       +        self.opt_bip39 = False
       +        seed, is_bip39, is_ext = self.seed_input(title, message, test)
                return seed
        
            @wizard_dialog