BadWords: update help message

This commit is contained in:
GLolol 2015-01-03 14:15:59 -05:00
parent 7e7c4425cf
commit d8404252ae
1 changed files with 2 additions and 2 deletions

View File

@ -83,8 +83,8 @@ class BadWords(callbacks.Privmsg):
if c.isHalfopPlus(msg.nick) or \ if c.isHalfopPlus(msg.nick) or \
ircdb.checkCapability(msg.prefix, cap): ircdb.checkCapability(msg.prefix, cap):
self.log.debug("Not kicking %s from %s, because " self.log.debug("Not kicking %s from %s, because "
"they are immune.", msg.nick, "they are halfop+ or can't be "
channel) "kicked.", msg.nick, channel)
else: else:
message = self.registryValue('kick.message', channel) message = self.registryValue('kick.message', channel)
irc.queueMsg(ircmsgs.kick(channel, msg.nick, message)) irc.queueMsg(ircmsgs.kick(channel, msg.nick, message))