diff --git a/weboob/tools/parsers/lxmlparser.py b/weboob/tools/parsers/lxmlparser.py index 34ffaee6..484395cf 100644 --- a/weboob/tools/parsers/lxmlparser.py +++ b/weboob/tools/parsers/lxmlparser.py @@ -76,7 +76,7 @@ class LxmlHtmlParser(IParser): if encoding is None: parser = None else: - parser = lxml.html.HTMLParser(encoding=encoding) + parser = lxml.html.HTMLParser(encoding=encoding, strip_cdata=False) return lxml.html.parse(data, parser) def tostring(self, element):