mirror of
https://github.com/jlu5/PyLink.git
synced 2024-11-27 21:19:31 +01:00
parent
a8303d0110
commit
abce18a5ba
13
log.py
13
log.py
@ -101,10 +101,11 @@ class PyLinkChannelLogger(logging.Handler):
|
||||
|
||||
# Send the message. If this fails, abort. No more messages will be
|
||||
# sent from this logger until the next sending succeeds.
|
||||
try:
|
||||
self.irc.msg(self.channel, msg)
|
||||
except:
|
||||
return
|
||||
else:
|
||||
self.called = False
|
||||
for line in msg.splitlines():
|
||||
try:
|
||||
self.irc.msg(self.channel, line)
|
||||
except:
|
||||
return
|
||||
else:
|
||||
self.called = False
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user