There is no more BasePlugin.

This commit is contained in:
Jeremy Fincher 2003-09-03 17:50:32 +00:00
parent 4200b4a4a7
commit 56e6fbd21c
1 changed files with 1 additions and 2 deletions

View File

@ -43,7 +43,6 @@ import privmsgs
import ircutils
import callbacks
###
# ChannelEnforcer: Enforces capabilities on JOIN, MODE, KICK, etc.
###
@ -184,7 +183,7 @@ class ChannelEnforcer(callbacks.Privmsg):
if msg.prefix == self.chanserv:
return
else:
return BasePlugin.__call__(self, irc, msg)
return callbacks.Privmsg.__call__(self, irc, msg)
Class = ChannelEnforcer