From a45d35eaa9e80af973cd4e62c1efa539dd4853f7 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Thu, 12 Mar 2009 15:56:45 +0100 Subject: Call QSettings constructors with no parametrs. --- nephilim.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'nephilim.py') diff --git a/nephilim.py b/nephilim.py index db78bb5..6cefbe0 100755 --- a/nephilim.py +++ b/nephilim.py @@ -28,13 +28,14 @@ except ImportError: sys.exit('PyQt4 not found. Ensure that it is installed.') from nephilim.winMain import winMain -from nephilim.misc import APPNAME +from nephilim.misc import APPNAME, ORGNAME def main(): try: app = QtGui.QApplication(sys.argv) app.setApplicationName(APPNAME) + app.setOrganizationName(ORGNAME) wMain = winMain() wMain.show() -- cgit v1.2.3