update @ Tue 8 Aug 18:22:45 EEST 2023

Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
This commit is contained in:
Ari Archer 2023-08-08 18:22:45 +03:00
parent c3e06a9e4f
commit c2a28b06da
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: A50D5B4B599AF8A2

View file

@ -965,7 +965,7 @@ def generate_rss(config: Dict[str, Any]) -> Tuple[int, Dict[str, Any]]:
)
etree.SubElement(channel, "lastBuildDate").text = now.strftime(ftime)
for id, post in config["blogs"].items():
for id, post in tuple(config["blogs"].items())[::-1]:
content: List[str] = post["content"].strip()[:196][::-1].split(maxsplit=1)
item: etree.Element = etree.SubElement(channel, "item")