From e6367af7f259efbe9c92ad880e8a7f1c47de3773 Mon Sep 17 00:00:00 2001 From: Mark Veidemanis Date: Tue, 28 Nov 2017 19:31:02 +0000 Subject: [PATCH] Send kick notifications --- threshold | 1 + 1 file changed, 1 insertion(+) diff --git a/threshold b/threshold index 301849b..ed4dca7 100755 --- a/threshold +++ b/threshold @@ -182,6 +182,7 @@ class IRCBot(IRCClient): def kickedFrom(self, channel, kicker, message): if channel in self.channels: self.channels.remove(channel) + helper.sendMaster("KICK %s: (%s/%s) %s" % (self.name, kicker, channel, message)) def connectionLost(self, reason): self.connected = False