1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-06-28 01:18:30 +00:00

Undo the _configuration_arg change

Reverts a49a2520fa
This commit is contained in:
tcely 2025-06-10 12:16:17 -04:00 committed by GitHub
parent a49a2520fa
commit d864d13b63
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -117,7 +117,7 @@ def _configuration_arg(self, key, default=NO_DEFAULT, *, casesense=False):
val = traverse_obj(self.settings, key)
if val is None:
return [] if default is NO_DEFAULT else default
return list(val) if casesense else [x.casefold() for x in val]
return list(val) if casesense else [x.lower() for x in val]
class BuiltinIEContentProvider(IEContentProvider, abc.ABC):