Skip to content

Commit

Permalink
Merge 9a35b0f into fec1913
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-urbanczyk committed Dec 11, 2017
2 parents fec1913 + 9a35b0f commit 26caba7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion logbook/queues.py
Expand Up @@ -562,7 +562,7 @@ def recv(self, timeout=None):
rv = self.queue.get()
else:
try:
rv = self.queue.get(block=False, timeout=timeout)
rv = self.queue.get(block=True, timeout=timeout)
except Empty:
return None
return LogRecord.from_dict(rv)
Expand Down

0 comments on commit 26caba7

Please sign in to comment.