doc/Makefile: fix -frfrfr

This commit is contained in:
aggstam
2023-10-27 00:02:28 +03:00
parent 30cc68b8e3
commit 3b046709d3

View File

@@ -123,7 +123,7 @@ def print_ics():
s = ''.join(ch if ch.isalnum() else '' for ch in event["title"])
ics_file = f"{event['start']}_{s}.ics"
with open(f"book/development/{ics_file}", "w") as f:
with open(f"book/dev/{ics_file}", "w") as f:
f.write('\n'.join(ics))
f.write('\n')