mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-04-28 17:57:16 +02:00
[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.
This commit is contained in:
parent
908312ad1c
commit
a0398c45c0
1 changed files with 1 additions and 1 deletions
|
@ -267,7 +267,7 @@ class Graph(BaseObject):
|
||||||
"""
|
"""
|
||||||
self._loading = True
|
self._loading = True
|
||||||
try:
|
try:
|
||||||
self._load(filepath, setupProjectFile, importProject, publishOutputs)
|
return self._load(filepath, setupProjectFile, importProject, publishOutputs)
|
||||||
finally:
|
finally:
|
||||||
self._loading = False
|
self._loading = False
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue