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 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)