summaryrefslogtreecommitdiff
path: root/src/pyssg/rss.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/pyssg/rss.py')
-rw-r--r--src/pyssg/rss.py2
1 files changed, 1 insertions, 1 deletions
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)