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

coreplugin: use a more standard "End of WHOIS" message

"End of /WHOIS list" seems relatively standard: it's used by InspIRCd, charybdis, and UnrealIRCd.
This commit is contained in:
James Lu 2015-07-24 11:13:53 -07:00
parent 007a1d9389
commit 3b67ddfee6

View File

@ -92,5 +92,5 @@ def handle_whois(irc, source, command, args):
log.exception('Error caught in WHOIS handler: %s', e)
finally:
# 318: End of WHOIS.
f(irc, server, 318, source, "%s :End of WHOIS" % nick)
f(irc, server, 318, source, "%s :End of /WHOIS list" % nick)
utils.add_hook(handle_whois, 'WHOIS')