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...)
This commit is contained in:
R. David Murray 2010-05-06 00:59:04 +00:00
parent 862490a546
commit 1f7de71090
1 changed files with 1 additions and 0 deletions

View File

@ -28,4 +28,5 @@ if __name__ == '__main__':
path = sys.argv[1]
port = int(sys.argv[2]) if len(sys.argv) > 2 else 8000
httpd = simple_server.make_server('', port, app)
print "Serving %s on port %s" % (path, port)
httpd.serve_forever()