1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-11-20 09:52: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:51 -04:00 committed by GitHub
parent e3d0e70271
commit 1ddd1d383d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -54,7 +54,7 @@ def run(self, info):
if e.reason == 'NO_SPACE':
self.report_warning(
'There\'s no disk space left, disk quota exceeded or filesystem xattr limit exceeded. '
f'Extended attribute {xattrname} was not written.')
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.')
else: