Fix Queue
This commit is contained in:
parent
382411bff0
commit
d7525274e9
1 changed files with 1 additions and 1 deletions
|
@ -237,7 +237,7 @@ class Sync(backgroundthread.KillableThread):
|
||||||
# See if there is a PMS message we need to handle
|
# See if there is a PMS message we need to handle
|
||||||
try:
|
try:
|
||||||
message = queue.get(block=False)
|
message = queue.get(block=False)
|
||||||
except backgroundthread.Queue.Empty:
|
except backgroundthread.queue.Empty:
|
||||||
pass
|
pass
|
||||||
# Got a message from PMS; process it
|
# Got a message from PMS; process it
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue