Skip to content

Commit a0398c4

Browse files
authored
[core] Graph: fix Graph.load missing return value
Add missing return statement for the load function, used by the UI to determine whether the load was successful.
1 parent 908312a commit a0398c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

meshroom/core/graph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ def load(self, filepath, setupProjectFile=True, importProject=False, publishOutp
267267
"""
268268
self._loading = True
269269
try:
270-
self._load(filepath, setupProjectFile, importProject, publishOutputs)
270+
return self._load(filepath, setupProjectFile, importProject, publishOutputs)
271271
finally:
272272
self._loading = False
273273

0 commit comments

Comments
 (0)