Fix to line length limit code.

master
Sean B. Palmer 2011-11-15 13:56:43 +00:00
parent 4efa325c06
commit 27d80498d3
1 changed files with 3 additions and 2 deletions

5
irc.py
View File

@ -49,8 +49,9 @@ class Bot(asynchat.async_chat):
# print '%r %r %r' % (self, args, text)
try:
if text is not None:
self.push((' '.join(args) + ' :' + text)[:512] + '\r\n')
else: self.push(' '.join(args)[:512] + '\r\n')
# 510 because CR and LF count too, as nyuszika7h points out
self.push((' '.join(args) + ' :' + text)[:510] + '\r\n')
else: self.push(' '.join(args)[:510] + '\r\n')
except IndexError:
pass