not at all

This commit is contained in:
Guy Godfroy 2020-12-03 20:50:37 +01:00
parent 662c46b0f0
commit 785e4c4cf2
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ for dirname, subdirlist, mdlist in os.walk('.'):
with open(gmi_subpath+"/"+gmifile, 'w') as gmi: with open(gmi_subpath+"/"+gmifile, 'w') as gmi:
gmi.write(gmitext) gmi.write(gmitext)
posts_meta = sorted(posts_meta, key=lambda p: datetime.strptime(p["date"])) posts_meta.sort(key=lambda p: datetime.strptime(p["date"], "%Y-%m-%d"), reverse=True)
with open(tpl_path+"/index.tpl", 'r') as tpl: with open(tpl_path+"/index.tpl", 'r') as tpl:
template = Template(tpl.read()) template = Template(tpl.read())