From ee1267f06efdd1fa78c1c19fb2df88ba41016261 Mon Sep 17 00:00:00 2001 From: James Lu Date: Fri, 24 Jul 2015 21:12:33 -0700 Subject: [PATCH] relay: fix use of incorrect variable in logging --- plugins/relay.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/relay.py b/plugins/relay.py index e0081ae..8c9f911 100644 --- a/plugins/relay.py +++ b/plugins/relay.py @@ -446,7 +446,8 @@ def handle_chgclient(irc, source, command, args): remoteirc.proto.updateClient(remoteirc, user, field, text) except NotImplementedError: # IRCd doesn't support changing the field we want log.debug('(%s) Ignoring changing field %r of %s on %s (for %s/%s);' - 'remote IRCd doesn\'t support it', irc.name, field, user, target, remotenet, irc.name) + ' remote IRCd doesn\'t support it', irc.name, field, + user, target, netname, irc.name) continue for c in ('CHGHOST', 'CHGNAME', 'CHGIDENT'):