Added a comment for something that's easy to forget later.

This commit is contained in:
Jeremy Fincher 2004-08-06 06:47:47 +00:00
parent e26bd517ed
commit afc21c2afe
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ class IrcMsg(object):
self.prefix, s = s[1:].split(None, 1) self.prefix, s = s[1:].split(None, 1)
else: else:
self.prefix = '' self.prefix = ''
if ' :' in s: if ' :' in s: # Note the space: IPV6 addresses are bad w/o it.
s, last = s.split(' :', 1) s, last = s.split(' :', 1)
self.args = s.split() self.args = s.split()
self.args.append(last.rstrip('\r\n')) self.args.append(last.rstrip('\r\n'))