3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-11-01 01:09:22 +01:00

Irc: fix 62aea23879 (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:
data = self.queue.get_nowait()
self._send(data)
except Queue.Empty:
except queue.Empty:
pass
log.debug('(%s) Stopping queue thread as aborted is set', self.name)