diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | src/pyssg/rss.py | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,6 +1,7 @@ CHANGES ======= +* ... literally 3 commits to fix a missing obj * ACTUALLY add missing config obj lol * fix missing config obj * add rss support diff --git a/src/pyssg/rss.py b/src/pyssg/rss.py index 48710f9..3c2b59c 100644 --- a/src/pyssg/rss.py +++ b/src/pyssg/rss.py @@ -24,7 +24,7 @@ class RSSBuilder: self.rss = self.rss.replace('$$TITLE', self.config.title) self.rss = self.rss.replace('$$LINK', self.config.base_url) self.rss = self.rss.replace('$$PYSSGVERSION', VERSION) - items_formatted: str = __get_items_formatted() + items_formatted: str = self.__get_items_formatted() self.rss = self.rss.replace('$$ITEMS', items_formatted) current_date: str = datetime.now(tz=timezone.utc).strftime(DFORMAT) |