mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Fix invalid escape sequence?
This commit is contained in:
parent
110dffeb7f
commit
259c596e12
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@ def autofix_orthotypography_and_standardized_words():
|
||||||
transformations = {s: " " for s in godamn_spaces_of_hell}
|
transformations = {s: " " for s in godamn_spaces_of_hell}
|
||||||
transformations.update(
|
transformations.update(
|
||||||
{
|
{
|
||||||
"\.\.\.": "…",
|
r"\.\.\.": "…",
|
||||||
"https ://": "https://",
|
"https ://": "https://",
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue