From 97c2440635ea5063a31647652cfd08a7efcbb2d3 Mon Sep 17 00:00:00 2001 From: Sebastian Lohff Date: Mon, 2 Dec 2013 22:55:10 +0100 Subject: [PATCH] Set application name --- seopardy.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/seopardy.py b/seopardy.py index a4ee28c..941378a 100755 --- a/seopardy.py +++ b/seopardy.py @@ -4,7 +4,7 @@ from __future__ import print_function import argparse import yaml import sys -from PySide import QtGui +from PySide import QtGui, QtCore from music import MusicBox from question import Questions @@ -28,6 +28,7 @@ if __name__ == '__main__': # start gui app = QtGui.QApplication([sys.argv[0]]) + QtCore.QCoreApplication.setApplicationName("Seopardy") # check and load config file config = None