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

web py3

parent 4e1fd4a3
...@@ -25,7 +25,10 @@ ...@@ -25,7 +25,10 @@
# #
############################################################################## ##############################################################################
import six
from six.moves.html_parser import HTMLParser from six.moves.html_parser import HTMLParser
class HtmlParseHelper(HTMLParser): class HtmlParseHelper(HTMLParser):
""" """
Listens to all the HTMLParser methods and push results in a list of tuple. Listens to all the HTMLParser methods and push results in a list of tuple.
...@@ -131,5 +134,10 @@ def parseCssForUrl(text): ...@@ -131,5 +134,10 @@ def parseCssForUrl(text):
result.append(("data", data)) result.append(("data", data))
return result return result
def unescape(self, html): if six.PY2:
def unescape(self, html):
return HTMLParser().unescape(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