Skip to content

Commit 1ff41c3

Browse files
authored
Merge pull request #2734 from alicevision/fix/elapsedTimeSingleChunk
Fix elapsed time when there is only one chunk
2 parents 7d1ebe6 + c95c94b commit 1ff41c3

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

meshroom/core/node.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1387,8 +1387,6 @@ def getGlobalStatus(self):
13871387
def getFusedStatus(self):
13881388
if not self._chunks:
13891389
return StatusData()
1390-
if len(self._chunks) == 1:
1391-
return self._chunks[0].status
13921390
fusedStatus = StatusData()
13931391
fusedStatus.fromDict(self._chunks[0].status.toDict())
13941392
for chunk in self._chunks[1:]:

0 commit comments

Comments
 (0)