IrcCallback's super() doesn't take any args.

This commit is contained in:
Jeremy Fincher 2008-07-18 14:49:51 +00:00 committed by James Vega
parent 8786b4c993
commit 9f3bc9d355
1 changed files with 3 additions and 1 deletions

View File

@ -79,7 +79,9 @@ class IrcCallback(IrcCommandDispatcher):
}
def __init__(self, *args, **kwargs):
super(IrcCallback, self).__init__(*args, **kwargs)
#object doesn't take any args, so the buck stops here.
#super(IrcCallback, self).__init__(*args, **kwargs)
pass
def __repr__(self):
return '<%s %s %s>' % \