diff options
author | Paweł Jastrzębski <pawelj@vulturis.eu> | 2014-05-29 18:23:28 +0200 |
---|---|---|
committer | Paweł Jastrzębski <pawelj@vulturis.eu> | 2014-05-29 18:23:28 +0200 |
commit | fce3072dca8222f36f6fdc39123cb46b7fb547a6 (patch) | |
tree | 2ce8b37f0740e9155a421767a4ad7a43a6cbdf15 /kcc.py | |
parent | Implemented new DualMetaFix version (diff) | |
download | kcc-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-x | kcc.py | 1 |
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) |