Skip to content

Commit 151a404

Browse files
committed
[bin] Fix typo: Replace occurrences of "infos" with "info"
1 parent 4c6acf2 commit 151a404

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bin/meshroom_compute

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ graph.update()
7474

7575
def killRunningJob(node) -> NoReturn:
7676
""" Kills current job and try to avoid job restarting """
77-
jobInfos = node.nodeStatus.jobInfos
78-
submitterName = jobInfos.get("submitterName")
77+
jobInfo = node.nodeStatus.jobInfo
78+
submitterName = jobInfo.get("submitterName")
7979
if not submitterName:
8080
sys.exit(meshroom.MeshroomExitStatus.ERROR_NO_RETRY)
8181
from meshroom.core import submitters

0 commit comments

Comments
 (0)