Whitespace normalization.

This commit is contained in:
Tim Peters 2006-03-25 01:50:43 +00:00
parent 1a9fac0937
commit e33901eb2b
3 changed files with 4 additions and 4 deletions

View file

@ -59,7 +59,7 @@ class Queue:
self.unfinished_tasks = unfinished = self.unfinished_tasks - 1
if unfinished <= 0:
if unfinished < 0:
raise ValueError('task_done() called too many times')
raise ValueError('task_done() called too many times')
self.all_tasks_done.notifyAll()
finally:
self.all_tasks_done.release()