[downloader/http] xattr values should be bytes

This commit is contained in:
Yen Chi Hsuan 2016-10-01 19:58:13 +08:00
parent 63e0fd5bcc
commit d54739a2e6
No known key found for this signature in database
GPG Key ID: 3FDDD575826C5C30
1 changed files with 1 additions and 1 deletions

View File

@ -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))