Left in an _getIrcName call.

This commit is contained in:
Jeremy Fincher 2004-12-21 01:03:31 +00:00
parent a82e806a2d
commit d6136cc39e

View File

@ -225,7 +225,7 @@ class Network(callbacks.Privmsg):
return return
(replyIrc, replyMsg, d) = self._whois[(irc, loweredNick)] (replyIrc, replyMsg, d) = self._whois[(irc, loweredNick)]
del 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) replyIrc.reply(s)
do401 = do402 do401 = do402