From cd350457b2a04f7a68de037f5ac015aca5b0e415 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Fri, 28 Mar 2003 02:01:51 +0000 Subject: [PATCH] Fixed leftover debuging line and TypeError --- src/callbacks.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/callbacks.py b/src/callbacks.py index ece76f2ee..9bc9ebc2c 100644 --- a/src/callbacks.py +++ b/src/callbacks.py @@ -379,7 +379,7 @@ class Privmsg(irclib.IrcCallback): class IrcObjectProxyRegexp: - def __init__(self, irc): + def __init__(self, irc, *args): self.irc = irc def error(self, msg, s): @@ -389,7 +389,6 @@ class IrcObjectProxyRegexp: self.irc.queueMsg(reply(msg, s)) def __getattr__(self, attr): - print attr return getattr(self.irc, attr)