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

ircs2s_common: fix handling when failing to extract kill reason

This commit is contained in:
James Lu 2020-01-26 00:31:06 -08:00
parent 7c0deaa684
commit 5c3306bcff

View File

@ -522,8 +522,8 @@ class IRCS2SProtocol(IRCCommonProtocol):
# Get the reason, which is enclosed in brackets. # Get the reason, which is enclosed in brackets.
killmsg = ' '.join(args[1].split(" ")[1:])[1:-1] killmsg = ' '.join(args[1].split(" ")[1:])[1:-1]
if not killmsg: if not killmsg:
log.warning('(%s) Failed to extract kill reason: %r', irc.name, args) log.warning('(%s) Failed to extract kill reason: %r', self.name, args)
killmsg = '<No reason given>' killmsg = args[1]
else: else:
# We already have a preformatted kill, so just pass it on as is. # We already have a preformatted kill, so just pass it on as is.
# XXX: this does create a convoluted kill string if we want to forward kills # XXX: this does create a convoluted kill string if we want to forward kills