Correct URLs in RSS feed
This commit is contained in:
parent
8d30b23b04
commit
ec945e5679
1 changed files with 1 additions and 1 deletions
2
rss.py
2
rss.py
|
@ -46,7 +46,7 @@ def main():
|
||||||
p(map, lambda x: {
|
p(map, lambda x: {
|
||||||
**x,
|
**x,
|
||||||
"published_rfc822": iso8601torfc822(x["published"]),
|
"published_rfc822": iso8601torfc822(x["published"]),
|
||||||
"url": BASE_URL + x["path"]
|
"url": f"{BASE_URL}/{x['path']}"
|
||||||
}) | list
|
}) | list
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue