This is just super.

This commit is contained in:
Jeremy Fincher 2004-09-06 08:09:08 +00:00
parent 386a23090b
commit 975b2806a2
1 changed files with 2 additions and 2 deletions

View File

@ -84,9 +84,9 @@ class Http(callbacks.PrivmsgCommandAndRegexp):
_titleRe = re.compile(r'<title>(.*?)</title>', re.I | re.S)
def callCommand(self, method, irc, msg, *L, **kwargs):
def callCommand(self, name, irc, msg, *L, **kwargs):
try:
super(Http, self).callCommand(method, irc, msg, *L, **kwargs)
super(Http, self).callCommand(name, irc, msg, *L, **kwargs)
except webutils.WebError, e:
irc.error(str(e))