Commit 8850afb0 authored by panos's avatar panos

ReadJSCompleted plging amended -- running version

parent e3ede773
......@@ -29,7 +29,7 @@ class ReadJSCompleted(plugin.InputPreparationPlugin):
completed = step.get("completed", [])
'''if the step consists of two sub_steps (Setup - Process) then check if only one of them is concluded'''
for ind in range(len(completed)):
if completed[ind] == "No" or completed[ind] == "":
if completed[ind] == "No" or completed[ind] == "" or completed[ind] == None:
routeConcluded = False
''''if the index is bigger than 0 (1,2,..) it means that there is not only processing but also setup or other types of operations to be performed. Check if the components is already in the WIP. if not add it to it and keep the operation processing time for the remainingProcessingTime'''
if ind>=1:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment