From b6a379e94a7e53847980270f61fbeb799efed96d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Wojdy=C5=82a?= Date: Fri, 18 Oct 2013 23:10:38 +0200 Subject: [PATCH] Fixed PyQt4 import in guihelpers --- core/guihelpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/guihelpers.py b/core/guihelpers.py index 6d4da9a8..0c6f8b77 100644 --- a/core/guihelpers.py +++ b/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")