From d6136cc39ef44f64ca9e9510578940dfee1fcd07 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Tue, 21 Dec 2004 01:03:31 +0000 Subject: [PATCH] Left in an _getIrcName call. --- plugins/Network.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Network.py b/plugins/Network.py index 3e04f122b..721a2f84f 100644 --- a/plugins/Network.py +++ b/plugins/Network.py @@ -225,7 +225,7 @@ class Network(callbacks.Privmsg): return (replyIrc, replyMsg, d) = self._whois[(irc, loweredNick)] del self._whois[(irc, loweredNick)] - s = 'There is no %s on %s.' % (nick, self._getIrcName(irc)) + s = 'There is no %s on %s.' % (nick, irc.network) replyIrc.reply(s) do401 = do402