webserver: Add example url to startup.
This commit is contained in:
parent
1d8d497fff
commit
a6237ca16a
1 changed files with 1 additions and 1 deletions
|
|
@ -96,7 +96,7 @@ def make_summary_page(project_name, summary):
|
|||
def run(server_class=http.server.HTTPServer, handler_class=Webserver, port=8080):
|
||||
server_address = ("", port)
|
||||
httpd = server_class(server_address, handler_class)
|
||||
print("Starting httpd…")
|
||||
print(f"Starting httpd… See http://localhost:{port}/")
|
||||
httpd.serve_forever()
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue