Index: mojo/devtools/common/devtoolslib/http_server.py |
diff --git a/mojo/devtools/common/devtoolslib/http_server.py b/mojo/devtools/common/devtoolslib/http_server.py |
index 386b3569ac20c37e036719e23fdfa5fdc7d17359..6a796d005361791a3b3ecec1109acac730822a84 100644 |
--- a/mojo/devtools/common/devtoolslib/http_server.py |
+++ b/mojo/devtools/common/devtoolslib/http_server.py |
@@ -197,9 +197,6 @@ def start_http_server(mappings, host_port=0): |
http_thread = threading.Thread(target=httpd.serve_forever) |
http_thread.daemon = True |
http_thread.start() |
- print 'Started http://%s:%d to host %s.' % (httpd.server_address[0], |
- httpd.server_address[1], |
- str(mappings)) |
return httpd.server_address |
except socket.error as v: |
error_code = v[0] |