issue #20: fix queue.get() parameter list.

pull/45/head
David Wilson 7 years ago
parent 6dc0e13f5f
commit af8890b31f

@ -271,7 +271,7 @@ def _queue_interruptible_get(queue, timeout=None, block=True):
msg = None
while msg is None and (timeout is None or timeout < time.time()):
try:
msg = queue.get(True, 0.5, block=block)
msg = queue.get(block, 0.5)
except Queue.Empty:
if block:
break

Loading…
Cancel
Save