From 6f95b37f290e0225aed5f8f7733ad0730601201b Mon Sep 17 00:00:00 2001 From: cocoatomo Date: Mon, 27 Mar 2017 11:59:14 +0900 Subject: [PATCH] bpo-29888: Fix the link referring to "Python download page" (GH-823) --- Doc/tools/templates/download.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Doc/tools/templates/download.html b/Doc/tools/templates/download.html index 2a885d7550..22fa3b1d05 100644 --- a/Doc/tools/templates/download.html +++ b/Doc/tools/templates/download.html @@ -75,9 +75,9 @@ files in megabytes.{% endtrans %}

{% trans %}These archives contain all the content in the documentation.{% endtrans %}

-

{% trans download_page="https://www.python.org/download/releases/{{ release[:5] }}/" %}HTML Help -(.chm) files are made available in the "Windows" section -on the Python download page.{% endtrans %}

+

{% trans download_page="https://www.python.org/downloads/release/python-" + release.replace('.', '') + "/" %}HTML Help +(.chm) files are made available in the "Files" section +on the Python download page.{% endtrans %}

{% trans %}Unpacking{% endtrans %}

-- 2.50.1