mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[xattr] Enhanced error messages on Windows
This commit is contained in:
parent
fbff30d2db
commit
c827d4cfdb
@ -167,7 +167,10 @@ def write_xattr(path, key, value):
|
|||||||
self._downloader.report_warning(
|
self._downloader.report_warning(
|
||||||
'Unable to write extended attributes due to too long values.')
|
'Unable to write extended attributes due to too long values.')
|
||||||
else:
|
else:
|
||||||
self._downloader.report_error(
|
msg = 'This filesystem doesn\'t support extended attributes. '
|
||||||
'This filesystem doesn\'t support extended attributes. ' +
|
if os.name == 'nt':
|
||||||
'(You may have to enable them in your /etc/fstab)')
|
msg += 'You need to use NTFS.'
|
||||||
|
else:
|
||||||
|
msg += '(You may have to enable them in your /etc/fstab)'
|
||||||
|
self._downloader.report_error(msg)
|
||||||
return [], info
|
return [], info
|
||||||
|
Loading…
Reference in New Issue
Block a user