aboutsummaryrefslogtreecommitdiff
path: root/pgo_tools/pgo_tools.py
diff options
context:
space:
mode:
Diffstat (limited to 'pgo_tools/pgo_tools.py')
-rw-r--r--pgo_tools/pgo_tools.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pgo_tools/pgo_tools.py b/pgo_tools/pgo_tools.py
index 577fa376..2702d605 100644
--- a/pgo_tools/pgo_tools.py
+++ b/pgo_tools/pgo_tools.py
@@ -35,7 +35,7 @@ def run(
env = None
if logging.getLogger().isEnabledFor(logging.DEBUG):
- c = " ".join(shlex.quote(str(x)) for x in command)
+ c = shlex.join(str(x) for x in command)
dir_extra = f" in {cwd}" if cwd is not None else ""
logging.debug("Running `%s`%s", c, dir_extra)