From 43532fd1cc628a948d91422494ee81557393474b Mon Sep 17 00:00:00 2001 From: Celelibi Date: Fri, 19 Jun 2020 05:12:52 +0200 Subject: [PATCH] ClientbotWrapperProtocol: Missing log message argument: channel Signed-off-by: Celelibi --- protocols/clientbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocols/clientbot.py b/protocols/clientbot.py index 286ccd7..78df4a2 100644 --- a/protocols/clientbot.py +++ b/protocols/clientbot.py @@ -1157,7 +1157,7 @@ class ClientbotWrapperProtocol(ClientbotBaseProtocol, IRCCommonProtocol): channel = args[1] target = args[2] if channel not in self.channels: - log.warning('(%s) got ban mode +%s %s on unknown channel %s?', self.name, banmode, target) + log.warning('(%s) got ban mode +%s %s on unknown channel %s?', self.name, banmode, target, channel) else: # Just apply the mode; we send out a mode hook only when the corresponding ban list has finished sending. self.apply_modes(channel, [('+%s' % banmode, target)])