We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b477031 commit fa47004Copy full SHA for fa47004
1 file changed
meshroom/core/plugin.py
@@ -298,7 +298,7 @@ def getCommandLine(chunk):
298
raise RuntimeError("The project needs to be saved to use plugin nodes")
299
saved_graph = loadGraph(chunk.node.graph.filepath)
300
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] ):
+ or chunk.node._uid != saved_graph.findNode(str(chunk.node))._uid ):
302
raise RuntimeError("The changes needs to be saved to use plugin nodes")
303
304
cmdPrefix = ""
@@ -342,7 +342,7 @@ def getCommandLine(chunk):
342
343
return command
344
345
-# you may use these to esplicitly define Pluginnodes
+# you may use these to explicitly define Pluginnodes
346
class PluginNode(desc.Node):
347
pass
348
0 commit comments