From f94838b0a31683147c673d37d7904ac9ca7f91d3 Mon Sep 17 00:00:00 2001
From: David Klempner <klempner@imsanet.org>
Date: Mon, 2 Feb 2015 16:56:46 -0800
Subject: [PATCH] Make several python scripts explicitly python2.7

I tried actually doing a build on my home desktop, and none of these
run with python 3.3, which is /usr/bin/python on my home desktop.
---
 test/core/end2end/gen_build_json.py | 2 +-
 tools/buildgen/mako_renderer.py     | 2 +-
 tools/run_tests/run_tests.py        | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/test/core/end2end/gen_build_json.py b/test/core/end2end/gen_build_json.py
index 2c4368fe76..e28dbdb85d 100755
--- a/test/core/end2end/gen_build_json.py
+++ b/test/core/end2end/gen_build_json.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python2.7
 
 """Generates the appropriate build.json data for all the end2end tests."""
 
diff --git a/tools/buildgen/mako_renderer.py b/tools/buildgen/mako_renderer.py
index 29c7cf0307..18f6eeaba6 100755
--- a/tools/buildgen/mako_renderer.py
+++ b/tools/buildgen/mako_renderer.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python2.7
 
 """Simple Mako renderer.
 
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py
index 8cc029e3cc..280c3f05cb 100755
--- a/tools/run_tests/run_tests.py
+++ b/tools/run_tests/run_tests.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python2.7
 """Run tests in parallel."""
 
 import argparse
-- 
GitLab