diff --git a/src/agenda_culturel/import_tasks/custom_extractors/amisdutempsdescerises.py b/src/agenda_culturel/import_tasks/custom_extractors/amisdutempsdescerises.py index 2c43c29..e5c26e4 100644 --- a/src/agenda_culturel/import_tasks/custom_extractors/amisdutempsdescerises.py +++ b/src/agenda_culturel/import_tasks/custom_extractors/amisdutempsdescerises.py @@ -32,13 +32,13 @@ class CExtractor(Extractor): tags = [] start_day = e["ev_date"].split(' ')[0] start_time = e["ev_time"] - title = html.unescape(e["ev_titre"]) # TODO: décoder + title = html.unescape(e["ev_titre"]) if "ev_sstitre" in e and e["ev_sstitre"] != '': title = title + ' - ' + html.unescape(e["ev_sstitre"]) soup = BeautifulSoup(e["ev_info"], "html.parser") description = soup.text - location = e["li_nom"] if "li_nom" in e else None + location = html.unescape(e["li_nom"]) if "li_nom" in e else None if "ev_canceled" in e and e["ev_canceled"] != '0': tags += ["annulé"]