aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/run_interop_tests.py
diff options
context:
space:
mode:
authorGravatar Adele Zhou <adelez@google.com>2017-11-15 15:12:02 -0800
committerGravatar Adele Zhou <adelez@google.com>2017-11-15 15:20:19 -0800
commita00f972b214efcbfae906a12ce431da214059eaf (patch)
tree15bffd7fbd4ede24644b4978e2bf25f88cae17f3 /tools/run_tests/run_interop_tests.py
parent0d5e24d690af33284e76ed3a8fb7c4697bdb3701 (diff)
Fix manual docker command output for Python.
Diffstat (limited to 'tools/run_tests/run_interop_tests.py')
-rwxr-xr-xtools/run_tests/run_interop_tests.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/run_tests/run_interop_tests.py b/tools/run_tests/run_interop_tests.py
index b20d6ce88e..4f08dcbe34 100755
--- a/tools/run_tests/run_interop_tests.py
+++ b/tools/run_tests/run_interop_tests.py
@@ -572,6 +572,7 @@ def manual_cmdline(docker_cmdline, docker_image):
continue
if item == docker_image:
item = "$docker_image"
+ item = item.replace('"', '\\"')
# add quotes when necessary
if any(character.isspace() for character in item):
item = "\"%s\"" % item