[3.13] Fix syntax in generate_re_casefix.py (GH-122699) (#122721)

This was broken in gh-97963.
(cherry picked from commit b72c748d7f)

Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
This commit is contained in:
Miss Islington (bot) 2024-08-06 08:46:14 +02:00 committed by GitHub
parent fe65a8b0d7
commit 35bf9c62b1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
# Auto-generated by Tools/scripts/generate_re_casefix.py. # Auto-generated by Tools/build/generate_re_casefix.py.
# Maps the code of lowercased character to codes of different lowercased # Maps the code of lowercased character to codes of different lowercased
# characters which have the same uppercase. # characters which have the same uppercase.

View File

@ -23,9 +23,9 @@ re_casefix_template = f"""\
# Maps the code of lowercased character to codes of different lowercased # Maps the code of lowercased character to codes of different lowercased
# characters which have the same uppercase. # characters which have the same uppercase.
_EXTRA_CASES = { _EXTRA_CASES = {{
%s %s
} }}
""" """
def uname(i): def uname(i):