Browse Source

Fixed PyQt4 import in guihelpers

Rafał Wojdyła 10 years ago
parent
commit
b6a379e94a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/guihelpers.py

+ 1 - 1
core/guihelpers.py

@@ -23,12 +23,12 @@
 
 import sys
 from optparse import OptionParser
+from PyQt4.QtGui import QApplication,QMessageBox
 
 app = None
 system_bus = None
 
 def prepare_app():
-    from PyQt4.QtGui import QApplication,QMessageBox
     global app
     app  = QApplication(sys.argv)
     app.setOrganizationName("The Qubes Project")