mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[options] Accept quoted string across multiple lines (#9940)
Like: -f " bestvideo+bestaudio/ best "
This commit is contained in:
parent
eaaaaec042
commit
9e29ef13a3
1 changed files with 1 additions and 3 deletions
|
@ -26,9 +26,7 @@ def _readOptions(filename_bytes, default=[]):
|
|||
except IOError:
|
||||
return default # silently skip if file is not present
|
||||
try:
|
||||
res = []
|
||||
for l in optionf:
|
||||
res += compat_shlex_split(l, comments=True)
|
||||
res = compat_shlex_split(optionf.read(), comments=True)
|
||||
finally:
|
||||
optionf.close()
|
||||
return res
|
||||
|
|
Loading…
Reference in a new issue