Skip to content

Commit

Permalink
Merge pull request #12 from CraigMiloRogers/master
Browse files Browse the repository at this point in the history
Fix typo.
  • Loading branch information
CraigMiloRogers committed Sep 10, 2020
2 parents eddcd0a + bf281e8 commit 6feee4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyrallel/queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ def put(self, msg, block=True, timeout=None):
if timeout is not None:
if not block:
raise ValueError("A timeout is allowed only when not blocking.")
if tiemout < 0:
if timemout < 0:
raise Full

msg_id = self.generate_msg_id()
Expand Down

0 comments on commit 6feee4c

Please sign in to comment.