about summary refs log tree commit diff
path: root/kcc.py
diff options
context:
space:
mode:
authorPaweł Jastrzębski <pawelj@vulturis.eu>2014-05-29 18:23:28 +0200
committerPaweł Jastrzębski <pawelj@vulturis.eu>2014-05-29 18:23:28 +0200
commitfce3072dca8222f36f6fdc39123cb46b7fb547a6 (patch)
tree2ce8b37f0740e9155a421767a4ad7a43a6cbdf15 /kcc.py
parentImplemented new DualMetaFix version (diff)
downloadkcc-fce3072dca8222f36f6fdc39123cb46b7fb547a6.tar.gz
kcc-fce3072dca8222f36f6fdc39123cb46b7fb547a6.tar.bz2
kcc-fce3072dca8222f36f6fdc39123cb46b7fb547a6.zip
Updated to Python 3.4 and PyQt 5.3 (close #94)
Diffstat (limited to 'kcc.py')
-rwxr-xr-xkcc.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/kcc.py b/kcc.py
index 7cac49c..370b23c 100755
--- a/kcc.py
+++ b/kcc.py
@@ -114,6 +114,7 @@ class QApplicationMessaging(QtWidgets.QApplication):
         self._timeout = 1000
         self._server = QtNetwork.QLocalServer(self)
         if not self.isRunning():
+            # noinspection PyUnresolvedReferences
             self._server.newConnection.connect(self.handleMessage)
             self._server.listen(self._key)