Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Python 3 fix
  • Loading branch information
JoshRosen committed Jun 28, 2015
commit 5552380cd904b1d25575ea60ff88ff7333d718a4
2 changes: 1 addition & 1 deletion python/run-tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def main():
task_queue = Queue.Queue()
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()
for module in modules_to_test:
if python_implementation not in module.blacklisted_python_implementations:
for test_goal in module.python_test_goals:
Expand Down