mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-09-02 16:23:13 +00:00
[core] Fix --ignore-no-formats-error
(#10345)
Fixes regression in 5ce582448e
Closes #10344
Authored by: Grub4K
Co-authored-by: Simon Sawicki <contact@grub4k.xyz>
This commit is contained in:
@ -5120,6 +5120,9 @@ class _UnsafeExtensionError(Exception):
|
||||
|
||||
@classmethod
|
||||
def sanitize_extension(cls, extension, /, *, prepend=False):
|
||||
if extension is None:
|
||||
return None
|
||||
|
||||
if '/' in extension or '\\' in extension:
|
||||
raise cls(extension)
|
||||
|
||||
|
Reference in New Issue
Block a user