Skip to content

[2.7] bpo-29888: Fix the link referring to "Python download page" #823

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 27, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Doc/tools/templates/download.html
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ <h1>{% trans %}Download Python {{ release }} Documentation{% endtrans %}</h1>
<p>{% trans %}These archives contain all the content in the
documentation.{% endtrans %}</p>

<p>{% trans download_page="https://www.python.org/download/releases/{{ release[:5] }}/" %}HTML Help
(<tt>.chm</tt>) files are made available in the "Windows" section
on the <a href={{ download_page }}>Python download page</a>.{% endtrans %}</p>
<p>{% trans download_page="https://www.python.org/downloads/release/python-" + release.replace('.', '') + "/" %}HTML Help
(<tt>.chm</tt>) files are made available in the "Files" section
on the <a href="{{ download_page }}">Python download page</a>.{% endtrans %}</p>


<h2>{% trans %}Unpacking{% endtrans %}</h2>
Expand Down