Skip to content

Commit fa47004

Browse files
author
Matthieu Hog
committed
changes for uid renaming
1 parent b477031 commit fa47004

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

meshroom/core/plugin.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ def getCommandLine(chunk):
298298
raise RuntimeError("The project needs to be saved to use plugin nodes")
299299
saved_graph = loadGraph(chunk.node.graph.filepath)
300300
if (str(chunk.node) not in [str(f) for f in saved_graph._nodes._objects]
301-
or chunk.node._uids[0] != saved_graph.findNode(str(chunk.node))._uids[0] ):
301+
or chunk.node._uid != saved_graph.findNode(str(chunk.node))._uid ):
302302
raise RuntimeError("The changes needs to be saved to use plugin nodes")
303303

304304
cmdPrefix = ""
@@ -342,7 +342,7 @@ def getCommandLine(chunk):
342342

343343
return command
344344

345-
# you may use these to esplicitly define Pluginnodes
345+
# you may use these to explicitly define Pluginnodes
346346
class PluginNode(desc.Node):
347347
pass
348348

0 commit comments

Comments
 (0)