About Social Code
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorLucas Fryzek <lucas.fryzek@gmail.com>2023-01-20 23:19:56 -0500
committerLucas Fryzek <lucas.fryzek@gmail.com>2023-01-20 23:19:56 -0500
commitdaf0fc817b6af39ec77dd74a329e96ffe29c6b64 (patch)
tree13640d10c3fcdac39f455d0b4c57e536b6eb6fa9 /tools
parent3d89393a2fa64dc688fa42458b7610831f3b76f5 (diff)
Fix date issue in rss
Diffstat (limited to 'tools')
-rwxr-xr-xtools/rss_gen.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/rss_gen.py b/tools/rss_gen.py
index dc2ad2f..729cae1 100755
--- a/tools/rss_gen.py
+++ b/tools/rss_gen.py
@@ -36,8 +36,11 @@ for file in os.listdir(build_dir):
notes.append(note)
+
+notes.sort(key=lambda note: datetime.datetime.strptime(note["date"], "%Y-%m-%d"))
+
for note in notes:
- post_time = datetime.datetime.strptime("2022-10-30", "%Y-%m-%d")
+ post_time = datetime.datetime.strptime(note["date"], "%Y-%m-%d")
post_rfc_time = email.utils.formatdate(timeval=time.mktime(post_time.timetuple()))
post_url = "{}/notes/{}.html".format(url, note["name"])
item = ET.SubElement(channel, "item")