From: Eric S. Raymond Date: Sun, 7 Oct 2012 15:38:08 +0000 (-0400) Subject: Revert "Properly \n-terminate each send." X-Git-Tag: 1.9~13 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=3ffd01529caceded824f009a7938fbfaf91f667a;p=irker.git Revert "Properly \n-terminate each send." I misunderstood the RFCs. Curious that someone else reported this before I saw it. --- diff --git a/irkerd b/irkerd index 9b7e8d2..321bb5f 100755 --- a/irkerd +++ b/irkerd @@ -250,7 +250,7 @@ class Connection: self.connection.join(channel) self.irker.debug(1, "joining %s on %s." % (channel, self.servername)) for segment in message.split("\n"): - self.connection.privmsg(channel, segment + "\n") + self.connection.privmsg(channel, segment) time.sleep(ANTI_FLOOD_DELAY) self.last_xmit = self.channels_joined[channel] = time.time() self.irker.debug(1, "XMIT_TTL bump (%s transmission) at %s" % (self.servername, time.asctime()))