Skip to content

Commit a0351c0

Browse files
authored
Infra: Include trailing slash in RSS URLs to avoid 301 redirect (python#2474)
1 parent 9c6f5dd commit a0351c0

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ venv:
3232
echo "To recreate it, remove it first with \`make clean-venv'."; \
3333
else \
3434
$(PYTHON) -m venv $(VENVDIR); \
35+
$(VENVDIR)/bin/python3 -m pip install -U pip wheel; \
3536
$(VENVDIR)/bin/python3 -m pip install -r requirements.txt; \
3637
echo "The venv has been created in the $(VENVDIR) directory"; \
3738
fi

generate_rss.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ def main():
167167
joined_authors = ", ".join(f"{name} ({email_address})" for name, email_address in parsed_authors)
168168
else:
169169
joined_authors = author
170-
url = f"https://peps.python.org/pep-{pep_num:0>4}"
170+
url = f"https://peps.python.org/pep-{pep_num:0>4}/"
171171

172172
item = entry.FeedEntry()
173173
item.title(f"PEP {pep_num}: {title}")

0 commit comments

Comments
 (0)