Change to a sendMsg to stave off a possible loop.

This commit is contained in:
Jeremy Fincher 2004-05-11 18:14:23 +00:00
parent 06a8f68f7e
commit b01ca9845f
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ class IrcHandler(logging.Handler):
if not ircdb.checkCapability(hostmask, capability): if not ircdb.checkCapability(hostmask, capability):
msgOk = False msgOk = False
if msgOk: if msgOk:
irc.queueMsg(msg) irc.sendMsg(msg)
else: else:
print '*** Not sending to %r' % target print '*** Not sending to %r' % target