logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: d54739a2e6a8dc089e7530afda0a1cfe355a6fef
parent 63e0fd5bccf5cfb85e00e5935f4b6961ff26c58c
Author: Yen Chi Hsuan <yan12125@gmail.com>
Date:   Sat,  1 Oct 2016 19:58:13 +0800

[downloader/http] xattr values should be bytes

Diffstat:

Myoutube_dl/downloader/http.py2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/downloader/http.py b/youtube_dl/downloader/http.py @@ -182,7 +182,7 @@ class HttpFD(FileDownloader): if self.params.get('xattr_set_filesize', False) and data_len is not None: try: - write_xattr(tmpfilename, 'user.ytdl.filesize', str(data_len)) + write_xattr(tmpfilename, 'user.ytdl.filesize', str(data_len).encode('utf-8')) except (XAttrUnavailableError, XAttrMetadataError) as err: self.report_error('unable to set filesize xattr: %s' % str(err))