diff -r 4550d8e34765 -r 3d88d53f8c2b Cooperation/Connection.py --- a/Cooperation/Connection.py Thu Mar 09 17:56:06 2017 +0100 +++ b/Cooperation/Connection.py Thu Mar 09 19:28:59 2017 +0100 @@ -398,9 +398,9 @@ participantsList = msg.split(SeparatorToken) self.participants.emit(participantsList[:]) elif self.__currentDataType == Connection.Editor: - hash, fn, msg = \ + hashStr, fn, msg = \ str(self.__buffer, encoding="utf-8").split(SeparatorToken) - self.editorCommand.emit(hash, fn, msg) + self.editorCommand.emit(hashStr, fn, msg) self.__currentDataType = Connection.Undefined self.__numBytesForCurrentDataType = 0