From 70439bfeb9264a08b27afd5a38f4aef049d7646a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20Ke=C3=9Fler?= Date: Thu, 31 Mar 2022 23:19:47 +0200 Subject: [PATCH] better replacement of \ss --- constants.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/constants.py b/constants.py index 8dcbf48..6a3abf1 100644 --- a/constants.py +++ b/constants.py @@ -46,5 +46,6 @@ UTF8_REPLACEMENTS = { r'\"O': 'Ö', r'\"A': 'Ä', r'\"U': 'Ü', - r'\ss': 'ß', + r'{\ss}': 'ß', + r'{ß}': 'ß', }