diff --git a/dr_botzo/ircbot/bot.py b/dr_botzo/ircbot/bot.py index 46ff879..5deabb0 100644 --- a/dr_botzo/ircbot/bot.py +++ b/dr_botzo/ircbot/bot.py @@ -450,8 +450,7 @@ class IRCBot(irc.client.SimpleIRCClient): splitter = "..." # split messages that are too long. Max length is 512. - # TODO: this does not properly handle when the nickmask has been - # masked by the ircd + # TODO: this does not properly handle when the nickmask has been masked by the ircd # is the above still the case? space = 512 - len('\r\n') - len(' PRIVMSG ') - len(target) - len(' :') - len(self.nickmask) - len(' :') splitspace = space - (len(splitter) + 1)