replace deprecated 'unescape' method

This commit is contained in:
Mike Fährmann
2016-02-18 15:54:58 +01:00
parent b3aab5745b
commit 8a49a28d13

View File

@@ -11,7 +11,7 @@
import sys
import re
import os.path
import html.parser
import html
import urllib.parse
import platform
@@ -114,4 +114,4 @@ else:
unquote = urllib.parse.unquote
unescape = html.parser.HTMLParser().unescape
unescape = html.unescape