replace deprecated 'unescape' method

This commit is contained in:
Mike Fährmann 2016-02-18 15:54:58 +01:00
parent b3aab5745b
commit 8a49a28d13
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

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