From 259c596e12ec273e552b41ee506f708e21c35895 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Tue, 21 May 2024 23:16:23 +0200 Subject: [PATCH] Fix invalid escape sequence? --- maintenance/autofix_locale_format.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintenance/autofix_locale_format.py b/maintenance/autofix_locale_format.py index 2146267c1..5fa34ad5e 100644 --- a/maintenance/autofix_locale_format.py +++ b/maintenance/autofix_locale_format.py @@ -117,7 +117,7 @@ def autofix_orthotypography_and_standardized_words(): transformations = {s: " " for s in godamn_spaces_of_hell} transformations.update( { - "\.\.\.": "…", + r"\.\.\.": "…", "https ://": "https://", } )