diff options
author | Lucas Fryzek <lucas.fryzek@gmail.com> | 2023-01-20 23:19:56 -0500 |
---|---|---|
committer | Lucas Fryzek <lucas.fryzek@gmail.com> | 2023-01-20 23:19:56 -0500 |
commit | daf0fc817b6af39ec77dd74a329e96ffe29c6b64 (patch) | |
tree | 13640d10c3fcdac39f455d0b4c57e536b6eb6fa9 /tools | |
parent | 3d89393a2fa64dc688fa42458b7610831f3b76f5 (diff) |
Fix date issue in rss
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/rss_gen.py | 5 |
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") |