About Social Code
summaryrefslogtreecommitdiff
path: root/tools/rss_gen.py
diff options
context:
space:
mode:
authorLucas Fryzek <lucas.fryzek@gmail.com>2023-02-08 21:45:01 -0500
committerLucas Fryzek <lucas.fryzek@gmail.com>2023-02-08 21:45:01 -0500
commit0d306f99954626a347cad1b2d81e80544ddf9e0c (patch)
treece83f65f9210942bb0ccaacc9b68983cb6fd2226 /tools/rss_gen.py
parente9ba415feb4d524cc7c3311bc98cc59971f873d2 (diff)
Switch to long feed
Diffstat (limited to 'tools/rss_gen.py')
-rwxr-xr-xtools/rss_gen.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/rss_gen.py b/tools/rss_gen.py
index 75572ba..0c7d8aa 100755
--- a/tools/rss_gen.py
+++ b/tools/rss_gen.py
@@ -63,7 +63,7 @@ for note in notes:
item = ET.SubElement(channel, "item")
ET.SubElement(item, "title").text = note["title"]
ET.SubElement(item, "link").text = post_url
- ET.SubElement(item, "description").text = note["preview"]
+ ET.SubElement(item, "description").text = note["long_preview"]
#if "categories" in note:
# ET.SubElement(item, "category").text = note["categories"]