aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/compat.py
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2015-10-29 13:58:40 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2015-10-29 13:58:40 +0100
commitae37338e681319a28d98dc551253d9fa1830969a (patch)
tree2330f923fce406c150717166b1dea6d912e24d97 /youtube_dl/compat.py
parentf78546272cf7c4b10c8003870728ab69bec982fc (diff)
downloadyoutube-dl-ae37338e681319a28d98dc551253d9fa1830969a.zip
youtube-dl-ae37338e681319a28d98dc551253d9fa1830969a.tar.gz
youtube-dl-ae37338e681319a28d98dc551253d9fa1830969a.tar.bz2
[compat] compat_etree_fromstring: clarify comment
Diffstat (limited to 'youtube_dl/compat.py')
-rw-r--r--youtube_dl/compat.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/compat.py b/youtube_dl/compat.py
index 2d43ec8..a3e8526 100644
--- a/youtube_dl/compat.py
+++ b/youtube_dl/compat.py
@@ -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: