Converted to use world.getIrc.

This commit is contained in:
Jeremy Fincher 2004-12-16 08:10:46 +00:00
parent 73deb2036c
commit 0c0f7915f5
1 changed files with 6 additions and 5 deletions

View File

@ -55,11 +55,12 @@ class Network(callbacks.Privmsg):
_whois = {}
_latency = {}
def _getIrc(self, network):
network = network.lower()
for irc in world.ircs:
if irc.network.lower() == network:
return irc
raise callbacks.Error, 'I\'m not currently connected to %s.' % network
irc = world.getIrc(network)
if irc:
return irc
else:
raise callbacks.Error, \
'I\'m not currently connected to %s.' % network
def connect(self, irc, msg, args, network, server):
"""<network> [<host[:port]>]