From 2e3317ce072273f8b00146410d9dbad441d692df Mon Sep 17 00:00:00 2001 From: James Lu Date: Mon, 11 Jun 2018 19:10:04 -0700 Subject: [PATCH] relay: explicitly mention forwarding in relayed kill messages (#520) --- plugins/relay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/relay.py b/plugins/relay.py index da265a0..8cdda42 100644 --- a/plugins/relay.py +++ b/plugins/relay.py @@ -1906,7 +1906,7 @@ def handle_kill(irc, numeric, command, args): # Target user was remote: if realuser and realuser[0] != irc.name: del relayusers[realuser][irc.name] - fwd_reason = 'KILL from %s/%s: %s' % (irc.get_friendly_name(numeric), irc.name, args['text']) + fwd_reason = 'KILL FWD from %s/%s: %s' % (irc.get_friendly_name(numeric), irc.name, args['text']) origirc = world.networkobjects[realuser[0]]