From dd572f56eae8e541411ab0c941faddfc5ac06077 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Mon, 20 Dec 2004 06:05:17 +0000 Subject: [PATCH] Forgot to lower the nick. --- plugins/Network.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/Network.py b/plugins/Network.py index 8973bfaab..3e04f122b 100644 --- a/plugins/Network.py +++ b/plugins/Network.py @@ -239,6 +239,7 @@ class Network(callbacks.Privmsg): # The double nick here is necessary because single-nick WHOIS only works # if the nick is on the same server (*not* the same network) as the user # giving the command. Yeah, it made me say wtf too. + nick = ircutils.toLower(nick) otherIrc.queueMsg(ircmsgs.whois(nick, nick)) self._whois[(otherIrc, nick)] = (irc, msg, {}) whois = wrap(whois, ['networkIrc', 'nick'])