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