From b01ca9845f52c49c3247cc829d530a7d8d207197 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Tue, 11 May 2004 18:14:23 +0000 Subject: [PATCH] Change to a sendMsg to stave off a possible loop. --- plugins/LogToIrc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/LogToIrc.py b/plugins/LogToIrc.py index 8e4c2a6ec..f20c731a1 100644 --- a/plugins/LogToIrc.py +++ b/plugins/LogToIrc.py @@ -91,7 +91,7 @@ class IrcHandler(logging.Handler): if not ircdb.checkCapability(hostmask, capability): msgOk = False if msgOk: - irc.queueMsg(msg) + irc.sendMsg(msg) else: print '*** Not sending to %r' % target