From f2dcda6a1d9483560fb127eb7079de2611ce3339 Mon Sep 17 00:00:00 2001 From: Sagi Shnaidman Date: Sat, 24 Feb 2024 20:53:41 +0200 Subject: [PATCH] Remove unnecessary quotes in podman_container_exec module Fix #714 Signed-off-by: Sagi Shnaidman --- plugins/modules/podman_container_exec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/modules/podman_container_exec.py b/plugins/modules/podman_container_exec.py index 73d71b7d..1827b0ce 100644 --- a/plugins/modules/podman_container_exec.py +++ b/plugins/modules/podman_container_exec.py @@ -162,7 +162,7 @@ def run_container_exec(module: AnsibleModule) -> dict: to_text(value, errors='surrogate_or_strict') exec_options += ['--env', - '%s="%s"' % (key, value)] + '%s=%s' % (key, value)] if privileged: exec_options.append('--privileged')