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 3c2b59c..ec661bb 100644
--- a/src/pyssg/rss.py
+++ b/src/pyssg/rss.py
@@ -37,7 +37,7 @@ class RSSBuilder:
def __get_items_formatted(self) -> str:
# i_f=items formatted for short
i_f: str = ''
- for p in pages:
+ for p in self.pages:
url: str = f'{self.config.base_url}/{p.name.replace(".md", ".html")}'
date: str = p.c_datetime.strftime(DFORMAT)