From e7de9f840d3452f623a8af0755b62905ee1e7c03 Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Thu, 14 May 2015 10:34:20 -0500 Subject: [PATCH] minor comment cleanup so pycharm highlights it --- dr_botzo/ircbot/bot.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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)