diff options
author | Someone <someone@somenet.org> | 2020-12-09 22:52:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-09 22:52:42 +0100 |
commit | 049bb2e1b3d06721023a12be8e0885b96fed9a0e (patch) | |
tree | 7f9dc754c88d858ccc0bb8fef6286350bb6f08f2 | |
parent | 8033162ba4393db60791b201fb100d1be0f04431 (diff) | |
download | pelican-049bb2e1b3d06721023a12be8e0885b96fed9a0e.tar.gz |
add "http://" prefix to ip+port
-rw-r--r-- | pelican/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
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: |