From a056b129599b1c97b8a14e0c52e56c39f758861f Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Wed, 2 Feb 2005 12:45:03 +0000 Subject: [PATCH] Changed to use an __parent instead of a super call. --- plugins/ChannelLogger/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/ChannelLogger/plugin.py b/plugins/ChannelLogger/plugin.py index 418d92ab6..0693e81dd 100644 --- a/plugins/ChannelLogger/plugin.py +++ b/plugins/ChannelLogger/plugin.py @@ -69,7 +69,7 @@ class ChannelLogger(callbacks.Privmsg): # I don't know why I put this in, but it doesn't work, because it # doesn't call doNick or doQuit. # if msg.args and irc.isChannel(msg.args[0]): - super(self.__class__, self).__call__(irc, msg) + self.__parent.__call__(irc, msg) if irc in self.lastMsgs: if irc not in self.lastStates: self.lastStates[irc] = irc.state.copy()