3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-11-01 01:09:22 +01:00

ctcp: fix wrong logging format for unknown CTCPs

This commit is contained in:
James Lu 2018-03-01 02:48:04 -05:00
parent 5d25b3c105
commit e8e26daf05

View File

@ -44,7 +44,7 @@ def handle_ctcp(irc, source, command, args):
return False # Block this message from reaching the general command handler return False # Block this message from reaching the general command handler
else: else:
log.info('(%s) Received unknown CTCP %s from %s', log.info('(%s) Received unknown CTCP %s from %s to %s',
irc.name, ctcp_command, irc.get_hostmask(source), irc.name, ctcp_command, irc.get_hostmask(source),
irc.get_friendly_name(target)) irc.get_friendly_name(target))
return False return False