diff options
| author | alex <alex@pdp7.net> | 2024-12-31 19:29:03 +0100 |
|---|---|---|
| committer | alexpdp7 <alex@corcoles.net> | 2024-12-31 19:29:56 +0100 |
| commit | 5fe791f910e7be3e519b025d7545ed74952ca674 (patch) | |
| tree | 4686c6637f859250b9c193c81c2524411610321c | |
| parent | a62a5944909d100cef4244bb6433f4322cb61faf (diff) | |
Fix bug introduced by htmlgenerator updated
| -rw-r--r-- | blog/blog/html.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/blog/blog/html.py b/blog/blog/html.py index d3481744..5ba67d30 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: |
