Correct URLs in RSS feed

This commit is contained in:
Midgard 2020-06-16 14:44:43 +02:00
parent 8d30b23b04
commit ec945e5679
Signed by untrusted user who does not match committer: midgard
GPG Key ID: 511C112F1331BBB4
1 changed files with 1 additions and 1 deletions

2
rss.py
View File

@ -46,7 +46,7 @@ def main():
p(map, lambda x: {
**x,
"published_rfc822": iso8601torfc822(x["published"]),
"url": BASE_URL + x["path"]
"url": f"{BASE_URL}/{x['path']}"
}) | list
)