Skip to content

Commit 1de7977

Browse files
authored
Fix typo in PEP 625 email (#17120)
* Fix typo * Put filename in quotes
1 parent b4e1dc9 commit 1de7977

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

warehouse/templates/email/pep625-extension-email/body.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
as-is and do not need to be updated.
2929
</p>
3030
<p>
31-
Specifically, your recent upload of {{ filename }} is incompatible with PEP
31+
Specifically, your recent upload of '{{ filename }}' is incompatible with PEP
3232
625 because it uses the .zip file extension.
3333
</p>
3434
<p>

warehouse/templates/email/pep625-extension-email/body.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This email is notifying you of an upcoming deprecation that we have determined m
1919

2020
In the future, PyPI will require all newly uploaded source distribution filenames to comply with PEP 625 (https://peps.python.org/pep-0625/). Any source distributions already uploaded will remain in place as-is and do not need to be updated.
2121

22-
Specifically, your recent upload of {{ filename }} is incompatible with PEP 625 because it uses the .zip extension.
22+
Specifically, your recent upload of '{{ filename }}' is incompatible with PEP 625 because it uses the .zip extension.
2323

2424
In most cases, this can be resolved by upgrading the version of your build tooling to a later version that supports PEP 625 and produces compliant filenames.
2525

warehouse/templates/email/pep625-name-email/body.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
as-is and do not need to be updated.
2929
</p>
3030
<p>
31-
Specifically, your recent upload of {{ filename }} is incompatible with PEP
32-
625 because it does not contains the normalized project name
31+
Specifically, your recent upload of '{{ filename }}' is incompatible with PEP
32+
625 because it does not contain the normalized project name
3333
'{{ normalized_name }}'.
3434
</p>
3535
<p>

warehouse/templates/email/pep625-name-email/body.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This email is notifying you of an upcoming deprecation that we have determined m
1919

2020
In the future, PyPI will require all newly uploaded source distribution filenames to comply with PEP 625 (https://peps.python.org/pep-0625/). Any source distributions already uploaded will remain in place as-is and do not need to be updated.
2121

22-
Specifically, your recent upload of {{ filename }} is incompatible with PEP 625 because it does not contain the normalized project name '{{ normalized_name }}'.
22+
Specifically, your recent upload of '{{ filename }}' is incompatible with PEP 625 because it does not contain the normalized project name '{{ normalized_name }}'.
2323

2424
In most cases, this can be resolved by upgrading the version of your build tooling to a later version that supports PEP 625 and produces compliant filenames.
2525

warehouse/templates/email/pep625-version-email/body.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
as-is and do not need to be updated.
2929
</p>
3030
<p>
31-
Specifically, your recent upload of {{ filename }} is incompatible with PEP
31+
Specifically, your recent upload of '{{ filename }}' is incompatible with PEP
3232
625 because it does not contain the normalized project version
3333
'{{ normalized_version }}'.
3434
</p>

warehouse/templates/email/pep625-version-email/body.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This email is notifying you of an upcoming deprecation that we have determined m
1919

2020
In the future, PyPI will require all newly uploaded source distribution filenames to comply with PEP 625 (https://peps.python.org/pep-0625/). Any source distributions already uploaded will remain in place as-is and do not need to be updated.
2121

22-
Specifically, your recent upload of {{ filename }} is incompatible with PEP 625 because it does not contain contain the normalized project version '{{ normalized_version }}'.
22+
Specifically, your recent upload of '{{ filename }}' is incompatible with PEP 625 because it does not contain contain the normalized project version '{{ normalized_version }}'.
2323

2424
In most cases, this can be resolved by upgrading the version of your build tooling to a later version that supports PEP 625 and produces compliant filenames.
2525

0 commit comments

Comments
 (0)