From c8ec2d9600392835f84bc293d6db61758688fbaf Mon Sep 17 00:00:00 2001 From: James Lu Date: Sun, 24 Jul 2016 13:48:03 -0700 Subject: [PATCH] handlers: remove obsolete comment about WHOIS --- coremods/handlers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coremods/handlers.py b/coremods/handlers.py index bdb8bab..73c0a57 100644 --- a/coremods/handlers.py +++ b/coremods/handlers.py @@ -5,7 +5,7 @@ handlers.py - Implements miscellaneous IRC command handlers (WHOIS, services log from pylinkirc import utils, conf from pylinkirc.log import log def handle_whois(irc, source, command, args): - """Handle WHOIS queries, for IRCds that send them across servers (charybdis, UnrealIRCd; NOT InspIRCd).""" + """Handle WHOIS queries.""" target = args['target'] user = irc.users.get(target)