add "http://" prefix to ip+port

This commit is contained in:
Someone 2020-12-09 22:52:42 +01:00 committed by GitHub
commit 049bb2e1b3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -469,7 +469,7 @@ def listen(server, port, output, excqueue=None):
return
try:
print("\nServing site at: {}:{} - Tap CTRL-C to stop".format(
print("\nServing site at: http://{}:{} - Tap CTRL-C to stop".format(
server, port))
httpd.serve_forever()
except Exception as e: