Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/alicevision/meshroom.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCandice Bentéjac <candice.bentejac@gmail.com>2022-10-14 19:19:15 +0300
committerCandice Bentéjac <candice.bentejac@gmail.com>2022-10-21 17:20:37 +0300
commit371c8a223856bef7977b7f76e2d1d2d5377f4942 (patch)
tree16c5a62c4a7b5c3835a3664cc712a3059c88cfc8
parent02f87ff6342177bbd4fbb2dbb6b4401e3e793e88 (diff)
[core] Do not write nodes' UIDs when saving templates
-rw-r--r--meshroom/core/graph.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/meshroom/core/graph.py b/meshroom/core/graph.py
index c20dd2b3..601e6b90 100644
--- a/meshroom/core/graph.py
+++ b/meshroom/core/graph.py
@@ -1247,6 +1247,8 @@ class Graph(BaseObject):
if attribute.isDefault and not attribute.isLink:
del graph[nodeName]["outputs"][attrName]
+ del graph[nodeName]["uids"]
+
return graph
def _setFilepath(self, filepath):