Fixed for a certain user whose name starts with a J and has "Finch" in it.

This commit is contained in:
Daniel DiPaolo 2007-10-24 14:16:12 +00:00 committed by James Vega
parent 1bf4f5554f
commit 2672cf6080

View File

@ -107,7 +107,7 @@ class ChannelStat(irclib.IrcCommandDispatcher):
class UserStat(ChannelStat):
_values = ChannelStat._values + ['kicked']
_values = ['kicked'] + ChannelStat._values
def __init__(self, kicked=0, *args):
ChannelStat.__init__(self, *args)
self.kicked = kicked