2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-25 19:30:04 +01:00

Fix update->extend mismatch in Runner.py - work in progress #1982

This commit is contained in:
Thomas Nagy 2017-06-09 15:54:08 +02:00
parent f75de87cf4
commit 1d4ce07dea

View File

@ -237,7 +237,7 @@ class Parallel(object):
for k in ready:
# TODO could be better, but we will have 1 task in general?
self.insert_with_prio(k)
self.incomplete.update(waiting)
self.incomplete.extend(waiting)
self.total += len(tsk.more_tasks)
def mark_finished(self, tsk):