mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2025-08-14 10:37:36 -07:00
[YoutubeDL] Raise syntax error for format selection expressions with multiple + operators (closes #27803)
This commit is contained in:
parent
7c2d18a13f
commit
d81a213cfb
2 changed files with 3 additions and 0 deletions
|
@ -1226,6 +1226,8 @@ class YoutubeDL(object):
|
|||
group = _parse_format_selection(tokens, inside_group=True)
|
||||
current_selector = FormatSelector(GROUP, group, [])
|
||||
elif string == '+':
|
||||
if inside_merge:
|
||||
raise syntax_error('Unexpected "+"', start)
|
||||
video_selector = current_selector
|
||||
audio_selector = _parse_format_selection(tokens, inside_merge=True)
|
||||
if not video_selector or not audio_selector:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue