rename variable for python compliance

This commit is contained in:
Fabien Servant @ TCS 2022-12-08 09:33:06 +01:00 committed by GitHub
parent 18026c3d59
commit 06d7d96fa2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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: