From 1a94ece5465eabf4844b409689b740fef2f61743 Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Fri, 24 Mar 2023 13:45:45 -0400 Subject: [PATCH] Use `{slug}` instead of `%s` in pelicanconf --- publishconf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/publishconf.py b/publishconf.py index 6fe3ee4..d286da9 100644 --- a/publishconf.py +++ b/publishconf.py @@ -14,6 +14,6 @@ SITEURL = 'https://adamgoldsmith.name/blag' RELATIVE_URLS = False FEED_ALL_ATOM = 'feeds/all.atom.xml' -CATEGORY_FEED_ATOM = 'feeds/%s.atom.xml' +CATEGORY_FEED_ATOM = 'feeds/{slug}.atom.xml' DELETE_OUTPUT_DIRECTORY = True