summaryrefslogtreecommitdiff
path: root/nephilim.py
diff options
context:
space:
mode:
Diffstat (limited to 'nephilim.py')
-rwxr-xr-xnephilim.py3
1 files changed, 2 insertions, 1 deletions
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()