mirror of
https://source.netsyms.com/Mirrors/youtube-dl
synced 2024-11-03 03:40:20 +00:00
[xattr] Always output a warning message on errors
This commit is contained in:
parent
42cc71e80b
commit
2a2e2770cc
@ -76,9 +76,16 @@ class XAttrMetadataPP(PostProcessor):
|
|||||||
else:
|
else:
|
||||||
# On Unix, and can't find pyxattr, setfattr, or xattr.
|
# On Unix, and can't find pyxattr, setfattr, or xattr.
|
||||||
if sys.platform.startswith('linux'):
|
if sys.platform.startswith('linux'):
|
||||||
self._downloader.report_error("Couldn't find a tool to set the xattrs. Install either the python 'pyxattr' or 'xattr' modules, or the GNU 'attr' package (which contains the 'setfattr' tool).")
|
self._downloader.report_error(
|
||||||
elif sys.platform == 'darwin':
|
"Couldn't find a tool to set the xattrs. "
|
||||||
self._downloader.report_error("Couldn't find a tool to set the xattrs. Install either the python 'xattr' module, or the 'xattr' binary.")
|
"Install either the python 'pyxattr' or 'xattr' "
|
||||||
|
"modules, or the GNU 'attr' package "
|
||||||
|
"(which contains the 'setfattr' tool).")
|
||||||
|
else:
|
||||||
|
self._downloader.report_error(
|
||||||
|
"Couldn't find a tool to set the xattrs. "
|
||||||
|
"Install either the python 'xattr' module, "
|
||||||
|
"or the 'xattr' binary.")
|
||||||
else:
|
else:
|
||||||
# Write xattrs to NTFS Alternate Data Streams: http://en.wikipedia.org/wiki/NTFS#Alternate_data_streams_.28ADS.29
|
# Write xattrs to NTFS Alternate Data Streams: http://en.wikipedia.org/wiki/NTFS#Alternate_data_streams_.28ADS.29
|
||||||
def write_xattr(path, key, value):
|
def write_xattr(path, key, value):
|
||||||
|
Loading…
Reference in New Issue
Block a user