Initialize Parallel.processed at 0 not 1

This commit is contained in:
Thomas Nagy 2017-06-23 13:36:28 +02:00
parent c49a74dd16
commit 0a1d47c7ec
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ class Parallel(object):
self.count = 0
"""Amount of tasks that may be processed by :py:class:`waflib.Runner.TaskConsumer`"""
self.processed = 1
self.processed = 0
"""Amount of tasks processed"""
self.stop = False