diff options
Diffstat (limited to 'youtube_dl/utils.py')
| -rw-r--r-- | youtube_dl/utils.py | 6 | 
1 files changed, 1 insertions, 5 deletions
| diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index 7c0fb1592..0b2ba39e2 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -34,7 +34,6 @@ from .compat import (      compat_chr,      compat_getenv,      compat_html_entities, -    compat_html_parser,      compat_parse_qs,      compat_str,      compat_urllib_error, @@ -844,10 +843,7 @@ def bytes_to_intlist(bs):  def intlist_to_bytes(xs):      if not xs:          return b'' -    if isinstance(chr(0), bytes):  # Python 2 -        return ''.join([chr(x) for x in xs]) -    else: -        return bytes(xs) +    return struct.pack('%dB' % len(xs), *xs)  # Cross-platform file locking | 
