mirror of
https://github.com/jlu5/PyLink.git
synced 2024-11-24 11:39:25 +01:00
Irc: fix 62aea23879
(lowercase queue)
This commit is contained in:
parent
a3df47e88e
commit
4ca8667669
@ -182,7 +182,7 @@ class Irc(utils.DeprecatedAttributesObject):
|
|||||||
try:
|
try:
|
||||||
data = self.queue.get_nowait()
|
data = self.queue.get_nowait()
|
||||||
self._send(data)
|
self._send(data)
|
||||||
except Queue.Empty:
|
except queue.Empty:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
log.debug('(%s) Stopping queue thread as aborted is set', self.name)
|
log.debug('(%s) Stopping queue thread as aborted is set', self.name)
|
||||||
|
Loading…
Reference in New Issue
Block a user