3
0
mirror of https://github.com/jlu5/PyLink.git synced 2025-02-17 14:01:03 +01:00

Irc: fix 62aea23879f61d82522bfb91c0eb4fd9d3059740 (lowercase queue)

This commit is contained in:
James Lu 2017-05-07 17:34:04 -07:00
parent a3df47e88e
commit 4ca8667669

View File

@ -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)