From 117b7fbb9e7185f3d1952a399f69608dedcefaab Mon Sep 17 00:00:00 2001 From: Muayyad alsadi Date: Thu, 11 Nov 2021 17:52:02 +0200 Subject: [PATCH] command list of strings --- podman_compose.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/podman_compose.py b/podman_compose.py index a829a95..f7a9932 100755 --- a/podman_compose.py +++ b/podman_compose.py @@ -880,7 +880,7 @@ class Podman: cmd_args = list(map(str, cmd_args or [])) xargs = self.compose.get_podman_args(cmd) if cmd else [] cmd_ls = [self.podman_path, *podman_args, cmd] + xargs + cmd_args - print(" ".join(cmd_ls)) + print(" ".join([str(i) for i in cmd_ls])) if self.dry_run: return None # subprocess.Popen(args, bufsize = 0, executable = None, stdin = None, stdout = None, stderr = None, preexec_fn = None, close_fds = False, shell = False, cwd = None, env = None, universal_newlines = False, startupinfo = None, creationflags = 0)