Removed an extra self in my __parent call.

This commit is contained in:
Jeremy Fincher 2005-02-02 12:45:20 +00:00
parent a056b12959
commit 93b030640d

View File

@ -58,7 +58,7 @@ class Relay(callbacks.Privmsg):
self.ircstates[irc].addMsg(irc, self.lastmsg[irc])
finally:
self.lastmsg[irc] = msg
self.__parent.__call__(self, irc, msg)
self.__parent.__call__(irc, msg)
def do376(self, irc, msg):
networkGroup = conf.supybot.networks.get(irc.network)