From 06d7d96fa28033104b33df10a8eed7b27a3d9fb1 Mon Sep 17 00:00:00 2001 From: "Fabien Servant @ TCS" <100348063+servantftechnicolor@users.noreply.github.com> Date: Thu, 8 Dec 2022 09:33:06 +0100 Subject: [PATCH] rename variable for python compliance --- meshroom/core/desc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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: