1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-11-20 01:42:50 +01:00

add quotes around xattrname

Co-authored-by: bashonly <88596187+bashonly@users.noreply.github.com>
This commit is contained in:
Eric Lammerts 2024-09-28 21:11:58 -04:00 committed by GitHub
parent 1ddd1d383d
commit 5695f4f498
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -56,7 +56,7 @@ def run(self, info):
'There\'s no disk space left, disk quota exceeded or filesystem xattr limit exceeded. '
f'Extended attribute "{xattrname}" was not written.')
elif e.reason == 'VALUE_TOO_LONG':
self.report_warning(f'Unable to write extended attribute {xattrname} due to too long values.')
self.report_warning(f'Unable to write extended attribute "{xattrname}" due to too long values.')
else:
tip = ('You need to use NTFS' if compat_os_name == 'nt'
else 'You may have to enable them in your "/etc/fstab"')