diff options
Diffstat (limited to 'blog')
| -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: |
