Kaydet (Commit) 1f7de710 authored tarafından R. David Murray's avatar R. David Murray

Have the serve.py script announce the directory it is

serving and which port it is serving it on (I can
never remember the default port number it uses...)
üst 862490a5
...@@ -28,4 +28,5 @@ if __name__ == '__main__': ...@@ -28,4 +28,5 @@ if __name__ == '__main__':
path = sys.argv[1] path = sys.argv[1]
port = int(sys.argv[2]) if len(sys.argv) > 2 else 8000 port = int(sys.argv[2]) if len(sys.argv) > 2 else 8000
httpd = simple_server.make_server('', port, app) httpd = simple_server.make_server('', port, app)
print "Serving %s on port %s" % (path, port)
httpd.serve_forever() httpd.serve_forever()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment