From 87f31cbb8b3b4a5c6ebc707495fc23a1817b7a8d Mon Sep 17 00:00:00 2001 From: Pavel 'LEdoian' Turinsky Date: Sat, 22 Jan 2022 23:06:45 +0100 Subject: [PATCH] Show real pelican version --- pelicanconf.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pelicanconf.py b/pelicanconf.py index f4bf0c8..4ab7606 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -4,12 +4,14 @@ import os import sys sys.path.append(os.curdir) +import pelican AUTHOR = "LEdoian" SITENAME = "LEdoian's Blog" SITE_DESCRIPTION = "My personal webpage" # NOTE: Theme-specific -GENERATOR = "Pelican 4.5.4" # NOTE: Theme-specific +# FIXME: Ugly hack, write a plugin instead! +GENERATOR = "Pelican "+pelican.__version__ # NOTE: Theme-specific SITEURL = 'https://blog.ledoian.cz/' RELATIVE_URLS = True