Imported escape and unescape methods for Python 2.7

This commit is contained in:
Max P 2018-11-07 17:14:39 -08:00
parent 2420a560e3
commit 5ac9c5f2c6

View File

@ -18,7 +18,10 @@ try:
from html import escape, unescape
except ImportError:
# cgi.escape is deprecated in python 3.7
# import escape and unescape methods for Python 2.7
from cgi import escape
import HTMLParser
unescape = HTMLParser.HTMLParser().unescape
import re
import six
import binascii