1
0
Fork 0
forked from github/pelican

Merge pull request #2826 from someone-somenet-org/patch-1

Add "http://" prefix to `pelican --listen` output
This commit is contained in:
Justin Mayer 2021-01-14 10:54:57 +01:00 committed by GitHub
commit f9abcb30e3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -473,7 +473,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: