From d8404252aea8978bed6bb7ec32cdf11382e12612 Mon Sep 17 00:00:00 2001 From: GLolol Date: Sat, 3 Jan 2015 14:15:59 -0500 Subject: [PATCH] BadWords: update help message --- plugins/BadWords/plugin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/BadWords/plugin.py b/plugins/BadWords/plugin.py index 88b1cc29e..b4251b0d3 100644 --- a/plugins/BadWords/plugin.py +++ b/plugins/BadWords/plugin.py @@ -83,8 +83,8 @@ class BadWords(callbacks.Privmsg): if c.isHalfopPlus(msg.nick) or \ ircdb.checkCapability(msg.prefix, cap): self.log.debug("Not kicking %s from %s, because " - "they are immune.", msg.nick, - channel) + "they are halfop+ or can't be " + "kicked.", msg.nick, channel) else: message = self.registryValue('kick.message', channel) irc.queueMsg(ircmsgs.kick(channel, msg.nick, message))