From f3466e1e6418d5fa84fcd6473f7d146f736b64c9 Mon Sep 17 00:00:00 2001 From: jedeoric Date: Sat, 1 Jan 2022 19:32:18 +0100 Subject: [PATCH] fix accent --- tools/retrieveSoftwareOricOrg.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/retrieveSoftwareOricOrg.py b/tools/retrieveSoftwareOricOrg.py index 3850c25..bf40f8e 100644 --- a/tools/retrieveSoftwareOricOrg.py +++ b/tools/retrieveSoftwareOricOrg.py @@ -79,6 +79,8 @@ def removeFrenchChars(mystr): mystr=mystr.replace(u'\xbb', u'c') # ç mystr=mystr.replace(u'\xb9', u'u') # ù + mystr=mystr.replace(u'\xb4', u'o') # ù + mystr=mystr.replace("é", "e")