URI: 
       tdo not use Qt outside of the Qt gui. Also, do not request i18n translations for messages that will be displayed once at most - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit f40a365186b51331ea4d838618b0a1def15dcb9d
   DIR parent 14a74292235523c4779d44c4e2f79d54e9fc4498
  HTML Author: thomasv <thomasv@gitorious>
       Date:   Tue, 19 Feb 2013 13:41:59 +0100
       
       do not use Qt outside of the Qt gui. Also, do not request i18n translations for messages that will be displayed once at most
       
       Diffstat:
         M lib/util.py                         |      14 ++++----------
       
       1 file changed, 4 insertions(+), 10 deletions(-)
       ---
   DIR diff --git a/lib/util.py b/lib/util.py
       t@@ -69,23 +69,17 @@ def print_msg(*args):
            sys.stdout.write(" ".join(args) + "\n")
            sys.stdout.flush()
        
       -def check_windows_wallet_migration():
       -    from PyQt4.QtGui import *
       -    from i18n import _
        
       -    app = QApplication(sys.argv)
       +def check_windows_wallet_migration():
            if os.path.exists(os.path.join(os.environ["LOCALAPPDATA"], "Electrum")):
                if os.path.exists(os.path.join(os.environ["APPDATA"], "Electrum")):
       -            QMessageBox.information(None,_("Folder migration"), _("Two Electrum folders have been found, the default Electrum location for Windows has changed from %s to %s since Electrum 1.7, please check your wallets and fix the problem manually." % (os.environ["LOCALAPPDATA"], os.environ["APPDATA"])))
       +            print_msg("Two Electrum folders have been found, the default Electrum location for Windows has changed from %s to %s since Electrum 1.7, please check your wallets and fix the problem manually." % (os.environ["LOCALAPPDATA"], os.environ["APPDATA"]))
                    sys.exit()
       -
       -        QMessageBox.information(None, _("Folder migration"), _("This version of Electrum moved the Electrum folder on windows from %s to %s, your Electrum folder will now be moved.") % (os.environ["LOCALAPPDATA"], os.environ["APPDATA"]))
                try:
                    shutil.move(os.path.join(os.environ["LOCALAPPDATA"], "Electrum"), os.path.join(os.environ["APPDATA"]))
       -            QMessageBox.information(None,_("Migration status"), _("Your wallet has been moved sucessfully."))
       +            print_msg("Your wallet has been moved from %s to %s."% (os.environ["LOCALAPPDATA"], os.environ["APPDATA"]))
                except:
       -            QMessageBox.information(None,_("Migration status"), _("Failed to move your wallet"))
       -
       +            print_msg("Failed to move your wallet.")
            
        
        def user_dir():