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 ======= +* fix timezone * fix missing ref to obj * fix bad method call * ... literally 3 commits to fix a missing obj diff --git a/src/pyssg/rss.py b/src/pyssg/rss.py index 2aa7fb0..9cfe629 100644 --- a/src/pyssg/rss.py +++ b/src/pyssg/rss.py @@ -23,7 +23,7 @@ class RSSBuilder: # initial base replacements 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) + self.rss = self.rss.replace('$$PYSSGVERSION', f'pyssg v{VERSION}') items_formatted: str = self.__get_items_formatted() self.rss = self.rss.replace('$$ITEMS', items_formatted) |