Forgot this from the nested plugins changes.

This commit is contained in:
Jeremy Fincher 2005-02-28 07:59:46 +00:00
parent fc2a18bdb3
commit 51637b3b00
1 changed files with 3 additions and 0 deletions

View File

@ -77,6 +77,9 @@ class IrcCallback(IrcCommandDispatcher):
'outFilter': lambda self, irc, msg: msg,
'name': lambda self: self.__class__.__name__,}
def __init__(self, *args, **kwargs):
super(IrcCallback, self).__init__(*args, **kwargs)
def __repr__(self):
return '<%s %s>' % (self.__class__.__name__, self.name())