Fixed leftover debuging line and TypeError

This commit is contained in:
Jeremy Fincher 2003-03-28 02:01:51 +00:00
parent c41b2c2109
commit cd350457b2
1 changed files with 1 additions and 2 deletions

View File

@ -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)