From fa9edb8fda820131ee6e06fcdb1ea962202ffd92 Mon Sep 17 00:00:00 2001 From: Thomas Sileo Date: Sun, 2 Feb 2020 12:38:16 +0100 Subject: [PATCH] Remove hard-coded email address from the feed. Fix #62 The email address is optional and I don't think adding it is worth the complexity. --- core/feed.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/feed.py b/core/feed.py index 7082821..93b6f65 100644 --- a/core/feed.py +++ b/core/feed.py @@ -17,7 +17,7 @@ def gen_feed(): fg = FeedGenerator() fg.id(f"{ID}") fg.title(f"{USERNAME} notes") - fg.author({"name": USERNAME, "email": "t@a4.io"}) + fg.author({"name": USERNAME}) fg.link(href=ID, rel="alternate") fg.description(f"{USERNAME} notes") fg.logo(ME.get("icon", {}).get("url"))