From 5fe791f910e7be3e519b025d7545ed74952ca674 Mon Sep 17 00:00:00 2001 From: alex Date: Tue, 31 Dec 2024 19:29:03 +0100 Subject: [PATCH] Fix bug introduced by htmlgenerator updated --- blog/blog/html.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/blog/html.py b/blog/blog/html.py index d348174..5ba67d3 100644 --- a/blog/blog/html.py +++ b/blog/blog/html.py @@ -15,7 +15,7 @@ def html_template(*content, page_title=None, path, full): links = list(itertools.chain(*[(h.A(text, href=href), ", ") for text, href in meta.LINKS])) - links += h.BaseElement(f" {meta.EMAIL_TEXT}") + links += [h.BaseElement(f" {meta.EMAIL_TEXT}")] full_part = [] if full: -- 2.47.3