diff --git a/meshroom/core/desc.py b/meshroom/core/desc.py index 2551a8ec..1425b182 100644 --- a/meshroom/core/desc.py +++ b/meshroom/core/desc.py @@ -618,9 +618,9 @@ class AVCommandLineNode(CommandLineNode): def buildCommandLine(self, chunk): - str = super(AVCommandLineNode, self).buildCommandLine(chunk) + commandLineString = super(AVCommandLineNode, self).buildCommandLine(chunk) - return str + AVCommandLineNode.cmdMem + AVCommandLineNode.cmdCore + return commandLineString + AVCommandLineNode.cmdMem + AVCommandLineNode.cmdCore # Test abstract node class InitNode: