Replace python2.7 by python everywhere.

This commit is contained in:
Eklavya Sharma
2016-04-07 18:57:25 +05:30
committed by Tim Abbott
parent 149938d468
commit 94e4b39112
24 changed files with 61 additions and 61 deletions

View File

@@ -75,7 +75,7 @@ def run_test(test):
print("Actual test to be run is %s, but import failed." % (actual_test_name,))
print("Importing test module directly to generate clearer traceback:")
try:
command = ["python2.7", "-c", "import %s" % (actual_test_name,)]
command = ["python", "-c", "import %s" % (actual_test_name,)]
print("Import test command: `%s`" % (' '.join(command),))
subprocess.check_call(command)
except subprocess.CalledProcessError: