About Social Code
summaryrefslogtreecommitdiff
path: root/tools/rss_gen.py
diff options
context:
space:
mode:
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 0c7d8aa..0b8d753 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["long_preview"]
+ ET.SubElement(item, "description").text = "{}...".format(note["long_preview"])
#if "categories" in note:
# ET.SubElement(item, "category").text = note["categories"]