Skip to content

Commit c95c94b

Browse files
author
Fabien Servant
committed
Fix elapsed time when there is only one chunk
1 parent 4ad1de2 commit c95c94b

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)