mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-02-05 17:16:49 +01:00
[core] Fix --ignore-no-formats-error
(#10345)
Fixes regression in 5ce582448ececb8d9c30c8c31f58330090ced03a Closes #10344 Authored by: Grub4K Co-authored-by: Simon Sawicki <contact@grub4k.xyz>
This commit is contained in:
parent
d28aa87e21
commit
cc767e9490
@ -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)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user