import threading and queue.Empty

Fixes the undefined name on line 644
This commit is contained in:
cclauss 2017-07-31 12:26:15 +02:00 committed by GitHub
parent d9b3078f7b
commit 6cb700b302
1 changed files with 7 additions and 2 deletions

View File

@ -8,6 +8,11 @@ import os
import uuid import uuid
import time import time
import gevent import gevent
import threading
try:
from queue import Empty as queue_Empty # Python 3
except ImportError:
from Queue import Empty as queue_Empty # Python 2
__all__ = ['NotificationIcon'] __all__ = ['NotificationIcon']
@ -666,7 +671,7 @@ class NotificationIcon(object):
while not self._pumpqueue.empty(): while not self._pumpqueue.empty():
callable = self._pumpqueue.get(False) callable = self._pumpqueue.get(False)
callable() callable()
except Queue.Empty: except queue_Empty:
pass pass