minor comment cleanup so pycharm highlights it

This commit is contained in:
Brian S. Stephan 2015-05-14 10:34:20 -05:00
parent 34c73fccf9
commit e7de9f840d
1 changed files with 1 additions and 2 deletions

View File

@ -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)