Correct end of pipeline

pull/973/head
Piero Toffanin 2019-04-22 15:23:02 -04:00
rodzic 9e921f44ac
commit cfd4728133
1 zmienionych plików z 2 dodań i 4 usunięć

Wyświetl plik

@ -371,14 +371,12 @@ class ODM_Stage:
# Last stage?
if self.args.end_with == self.name:
exit(0)
log.ODM_INFO("No more stages to run")
return
# Run next stage?
elif self.next_stage is not None:
self.next_stage.run(outputs)
else:
log.ODM_INFO("No more stages to run")
def process(self, args, outputs):
raise NotImplementedError