diff -r 2eef40885322 -r 07c12d2ceddf gmyth-stream/plugins/comm/tcp.py --- a/gmyth-stream/plugins/comm/tcp.py Fri Mar 30 23:07:54 2007 +0100 +++ b/gmyth-stream/plugins/comm/tcp.py Sat Mar 31 00:55:28 2007 +0100 @@ -18,11 +18,11 @@ return self.con.recv(size) def sendMsg(self, msg): - self.con.send(msg) + self.con.send(msg + "\n") def Ack(self, command): msg = "[%s] Command %s received" % (lib.now(), command) - self.sendMsg(msg + "\n") + self.sendMsg(msg) def getRequest(self): self.con, self.client = self.tcp.accept()