Skip to content

Commit

Permalink
Python 3 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshRosen committed Jun 26, 2015
1 parent 27a389f commit 37aff00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/run-tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def main():
start_time = time.time()
for python_exec in python_execs:
python_implementation = subprocess.check_output(
[python_exec, "-c", "import platform; print platform.python_implementation()"]).strip()
[python_exec, "-c", "import platform; print(platform.python_implementation())"]).strip()
print("Testing with `%s`: " % python_exec, end='')
subprocess.call([python_exec, "--version"])

Expand Down

0 comments on commit 37aff00

Please sign in to comment.