Python error fix

This commit is contained in:
Fabien Servant @ TCS 2022-12-23 18:12:10 +01:00 committed by GitHub
parent 05e8b87200
commit d04952c276
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -139,11 +139,11 @@ class RippleSubmitter(BaseSubmitter):
hasChange = True
for itemRemove in toRemove:
nodesDone.append(itemRemove)
nodesDone.add(itemRemove)
if (len(tasks) == 0):
return True
DefaultDispatcher(label=label, tasks=tasks, jobType='release', paused=False)()
return True
return True