From 049bb2e1b3d06721023a12be8e0885b96fed9a0e Mon Sep 17 00:00:00 2001 From: Someone Date: Wed, 9 Dec 2020 22:52:42 +0100 Subject: [PATCH] add "http://" prefix to ip+port --- pelican/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pelican/__init__.py b/pelican/__init__.py index 0d723220..3f6f7f1c 100644 --- a/pelican/__init__.py +++ b/pelican/__init__.py @@ -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: