diff options
Diffstat (limited to 'kcc.py')
-rw-r--r-- | kcc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kcc.py b/kcc.py index 0b3f966..9b4916d 100644 --- a/kcc.py +++ b/kcc.py @@ -71,7 +71,7 @@ class QApplicationMessaging(QtGui.QApplication): def handleMessage(self): socket = self._server.nextPendingConnection() if socket.waitForReadyRead(self._timeout): - self.emit(QtCore.SIGNAL('messageFromOtherInstance'), socket.readAll().data()) + self.emit(QtCore.SIGNAL('messageFromOtherInstance'), socket.readAll().data().decode('utf8')) def sendMessage(self, message): if self.isRunning(): |