From b133e59af4d10bb33f62038d8cddcdc78f77bc55 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Mon, 6 Sep 2004 08:04:03 +0000 Subject: [PATCH] Changed to a super, etc. --- src/Config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Config.py b/src/Config.py index 1949c6f12..a9a6aeb38 100644 --- a/src/Config.py +++ b/src/Config.py @@ -97,9 +97,9 @@ if os.name == 'posix': class Config(callbacks.Privmsg): - def callCommand(self, method, irc, msg, *L): + def callCommand(self, name, irc, msg, *L, **kwargs): try: - callbacks.Privmsg.callCommand(self, method, irc, msg, *L) + super(Config, self).callCommand(name, irc, msg, *L, **kwargs) except InvalidRegistryName, e: irc.error('%r is not a valid configuration variable.' % e.args[0]) except registry.InvalidRegistryValue, e: