aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/start_port_server.py
diff options
context:
space:
mode:
authorGravatar Craig Tiller <craig.tiller@gmail.com>2017-05-05 14:02:35 -0700
committerGravatar Craig Tiller <craig.tiller@gmail.com>2017-05-05 14:02:35 -0700
commitddc8a8243dfd3d2c6c5c513af0882d9acfb778a2 (patch)
tree9d15d861000f9798258f24688f8e4fa2364cd802 /tools/run_tests/start_port_server.py
parent20f2c431749ffd732c14519bf694e0adb25c9a73 (diff)
Fix port server on Windows
Diffstat (limited to 'tools/run_tests/start_port_server.py')
-rwxr-xr-xtools/run_tests/start_port_server.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/tools/run_tests/start_port_server.py b/tools/run_tests/start_port_server.py
index bfd72222b6..f7c9f43665 100755
--- a/tools/run_tests/start_port_server.py
+++ b/tools/run_tests/start_port_server.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2.7
# Copyright 2017, Google Inc.
# All rights reserved.
@@ -39,10 +39,8 @@ The path to this file is called out in test/core/util/port.c, and printed as
an error message to users.
"""
-from __future__ import print_function
-
import python_utils.start_port_server as start_port_server
start_port_server.start_port_server()
-print("Port server started successfully")
+print "Port server started successfully"