URI: 
       tMerge pull request #561 from grnbrg/master - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 9f9cfe31701604479f94dc7d7a14cdc389644b33
   DIR parent 989a95bf25d362c175b2b3c1a3b423025d38dbdb
  HTML Author: ThomasV <thomasv1@gmx.de>
       Date:   Wed, 29 Jan 2014 07:44:27 -0800
       
       Merge pull request #561 from grnbrg/master
       
       Squash case on user-entered seed when restoring a wallet.
       Diffstat:
         M gui/qt/installwizard.py             |       3 ++-
       
       1 file changed, 2 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py
       t@@ -127,7 +127,8 @@ class InstallWizard(QDialog):
                if not self.exec_():
                    return
        
       -        seed = unicode(seed_e.toPlainText())
       +        seed = seed_e.toPlainText()
       +        seed = unicode(seed.toLower())
        
                if not seed:
                    QMessageBox.warning(None, _('Error'), _('No seed'), _('OK'))