Remove shell parameter from the call of subprocess_popen

Remove shell parameter from subprocess_popen, [1] removes
shell reference in the above method in Neutron to fulfill
bandit B604 requirement.

[1]: https://review.opendev.org/c/openstack/neutron/+/915467

Change-Id: I6866f66e1ee74b28fbe28ec30c11126d00652c2d
This commit is contained in:
elajkat 2024-04-16 15:26:40 +02:00
parent 8704b2c7c0
commit 6e40758925
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ def execute(cmd):
cmd = list(map(str, cmd))
LOG.debug("Running command: %s", cmd)
env = os.environ.copy()
obj = utils.subprocess_popen(cmd, shell=False,
obj = utils.subprocess_popen(cmd,
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,