We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5de8b8 commit a21a1c9Copy full SHA for a21a1c9
meshroom/core/node.py
@@ -810,9 +810,8 @@ def clearData(self):
810
@Slot(result=str)
811
def getStartDateTime(self):
812
""" Return the date (str) of the first running chunk """
813
- if not self.isAlreadySubmittedOrFinished() or len(self._chunks) == 0:
814
- return ""
815
- dateTime = [chunk._status.startDateTime for chunk in self._chunks if chunk._status.startDateTime != ""]
+ dateTime = [chunk._status.startDateTime for chunk in self._chunks if chunk._status.status
+ not in (Status.NONE, Status.SUBMITTED) and chunk._status.startDateTime != ""]
816
return min(dateTime) if len(dateTime) != 0 else ""
817
818
def isAlreadySubmitted(self):
0 commit comments