Skip to content
Snippets Groups Projects
Commit bd9253ef authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

Fix to idle.idleReset function which could error on exit.

parent 9788f441
No related branches found
No related tags found
No related merge requests found
...@@ -214,8 +214,14 @@ def idleReset(): ...@@ -214,8 +214,14 @@ def idleReset():
if _idleTimer is not None: if _idleTimer is not None:
_idleTimer.Stop() _idleTimer.Stop()
# If we're atexit, the ref
# to the queue module might
# have been cleared.
if queue is not None: newQueue = queue.Queue()
else: newQueue = None
_idleRegistered = False _idleRegistered = False
_idleQueue = queue.Queue() _idleQueue = newQueue
_idleQueueDict = {} _idleQueueDict = {}
_idleTimer = None _idleTimer = None
_idleCallRate = 200 _idleCallRate = 200
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment