summaryrefslogtreecommitdiffstats
path: root/src/browse.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/browse.py')
-rwxr-xr-xsrc/browse.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/browse.py b/src/browse.py
index 0d586bf..d326af3 100755
--- a/src/browse.py
+++ b/src/browse.py
@@ -120,7 +120,7 @@ class RequestHandler(BaseHTTPServer.BaseHTTPRequestHandler):
port = 8000
httpd = BaseHTTPServer.HTTPServer(('',port), RequestHandler)
try:
- print 'Web server running on port %d...' % port
+ print 'Web server running on port %d, ctl-C to abort...' % port
webbrowser.open_new('http://localhost:%s' % port)
httpd.serve_forever()
except KeyboardInterrupt: