Removed nick hack in IrcMsg; I never liked it anyway.

This commit is contained in:
Jeremy Fincher 2003-08-10 11:25:03 +00:00
parent 936effb2bc
commit 60fa81c268

View File

@ -115,8 +115,8 @@ class IrcMsg(object):
self._user = user
self._host = host
self._command = command
if self.command == 'NICK' and type(args) != tuple:
args[0] = ircutils.nick(args[0])
## if self.command == 'NICK' and type(args) != tuple:
## args[0] = ircutils.nick(args[0])
self._args = tuple(args)