summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/coveragetest.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/coveragetest.py b/tests/coveragetest.py
index daa9eb7f..be80c498 100644
--- a/tests/coveragetest.py
+++ b/tests/coveragetest.py
@@ -425,6 +425,7 @@ class CoverageTest(
command_words = [command_name]
cmd = " ".join([shlex_quote(w) for w in command_words] + command_args)
+ cmd = " ".join(command_words + command_args)
print("cmd: {!r}".format(cmd))
# Add our test modules directory to PYTHONPATH. I'm sure there's too