diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-07-18 18:32:52 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-07-18 18:32:52 +0600 |
commit | 22603348aa0b3e02c520589dea092507a04ab06a (patch) | |
tree | 7fcc0e18589ab1789a1faa0a6c122eb46b1ba5c2 /youtube_dl | |
parent | fec73daaa30d006bc6c5d0483d255b7bc1c256b1 (diff) |
[compat] Fix _asciire
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/compat.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/compat.py b/youtube_dl/compat.py index db0da5828..0c57c7aeb 100644 --- a/youtube_dl/compat.py +++ b/youtube_dl/compat.py @@ -79,7 +79,8 @@ try: from urllib.parse import unquote as compat_urllib_parse_unquote from urllib.parse import unquote_plus as compat_urllib_parse_unquote_plus except ImportError: # Python 2 - _asciire = re.compile('([\x00-\x7f]+)') if sys.version_info < (2, 7) else compat_urllib_parse._asciire + _asciire = (compat_urllib_parse._asciire if hasattr(compat_urllib_parse, '_asciire') + else re.compile('([\x00-\x7f]+)')) # HACK: The following are the correct unquote_to_bytes, unquote and unquote_plus # implementations from cpython 3.4.3's stdlib. Python 2's version |