mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 19:19:32 +01:00
Comment our use of sendMsg instead of queueMsg.
This commit is contained in:
parent
c08ee5ecc6
commit
64d5f53dc4
@ -91,6 +91,10 @@ class IrcHandler(logging.Handler):
|
|||||||
if not ircdb.checkCapability(hostmask, capability):
|
if not ircdb.checkCapability(hostmask, capability):
|
||||||
msgOk = False
|
msgOk = False
|
||||||
if msgOk:
|
if msgOk:
|
||||||
|
# We use sendMsg here because queueMsg can cause some
|
||||||
|
# WARNING logs, which might be sent here, which might
|
||||||
|
# cause some more WARNING logs, etc. and that would be
|
||||||
|
# baaaaaad.
|
||||||
irc.sendMsg(msg)
|
irc.sendMsg(msg)
|
||||||
else:
|
else:
|
||||||
print '*** Not sending to %r' % target
|
print '*** Not sending to %r' % target
|
||||||
|
Loading…
Reference in New Issue
Block a user