| 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 16c76a98d5189638e0dfcb3a8d454ac21a6fc691..d8a275770135205263026d3cba56a3aa733ddf77 100644
|
| --- a/mojo/devtools/common/devtoolslib/http_server.py
|
| +++ b/mojo/devtools/common/devtoolslib/http_server.py
|
| @@ -222,7 +222,8 @@ def start_http_server(mappings, host_port=0):
|
| print 'Failed to start http server for %s on port %d: %s.' % (
|
| str(mappings), host_port, os.strerror(error_code))
|
| if error_code == errno.EADDRINUSE:
|
| - print (' Run `fuser %d/tcp` to find out which process is using the port.'
|
| + print (' Run `fuser %d/tcp` to find out which process is using the port;'
|
| % host_port)
|
| + print (' or `fuser -k %d/tcp` terminate it.' % host_port)
|
| print '---'
|
| raise
|
|
|