3
0
mirror of https://github.com/jlu5/PyLink.git synced 2025-01-23 10:44:09 +01:00

relay: fix use of incorrect variable in logging

This commit is contained in:
James Lu 2015-07-24 21:12:33 -07:00
parent 146ab5e444
commit ee1267f06e

View File

@ -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'):