Commit c026e1d3 authored by Jérome Perrin's avatar Jérome Perrin

web py3

parent b7de3dc6
......@@ -25,7 +25,10 @@
#
##############################################################################
import six
from six.moves.html_parser import HTMLParser
class HtmlParseHelper(HTMLParser):
"""
Listens to all the HTMLParser methods and push results in a list of tuple.
......@@ -131,5 +134,10 @@ def parseCssForUrl(text):
result.append(("data", data))
return result
def unescape(self, html):
return HTMLParser().unescape(html)
if six.PY2:
def unescape(self, html):
return HTMLParser().unescape(html)
else:
from html import unescape as html_unescape
def unescape(self, html):
return html_unescape(self, html)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment