aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVijay Pai <vpai@google.com>2019-06-14 15:58:17 -0700
committerGitHub <noreply@github.com>2019-06-14 15:58:17 -0700
commitb6dc83956856eef0774c12fc02da5d35f30da219 (patch)
treeeee9e2c1765f31c9a065bc5c7cc240feb40ddc6d
parent0bee8c41f9c52f81a06fbd8444b2d53249c484a9 (diff)
parentf05c475f010532c5dabc2d11b726cd00a5802736 (diff)
downloadgrpc-grpc-b6dc83956856eef0774c12fc02da5d35f30da219.tar.gz
Merge pull request #19354 from vjpai/i_know_python
Fix Python3 incompatibility
-rwxr-xr-xtest/core/bad_client/gen_build_yaml.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/core/bad_client/gen_build_yaml.py b/test/core/bad_client/gen_build_yaml.py
index bd311ccfd9..a4f3e4a0a3 100755
--- a/test/core/bad_client/gen_build_yaml.py
+++ b/test/core/bad_client/gen_build_yaml.py
@@ -17,6 +17,7 @@
"""Generates the appropriate build.json data for all the bad_client tests."""
+from __future__ import print_function
import collections
import yaml
@@ -77,7 +78,7 @@ def main():
]
}
for t in sorted(BAD_CLIENT_TESTS.keys())]}
- print yaml.dump(json)
+ print(yaml.dump(json))
if __name__ == '__main__':