1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-14 17:19:32 +00:00

[compat] compat_etree_fromstring: clarify comment

This commit is contained in:
Jaime Marquínez Ferrándiz 2015-10-29 13:58:40 +01:00
parent f78546272c
commit ae37338e68

View file

@ -216,8 +216,8 @@ except ImportError: # Python 2.6
if sys.version_info[0] >= 3:
compat_etree_fromstring = xml.etree.ElementTree.fromstring
else:
# on python 2.x the attributes and text of a node aren't always unicode
# objects
# python 2.x tries to encode unicode strings with ascii (see the
# XMLParser._fixtext method)
etree = xml.etree.ElementTree
try: