1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-18 11:09:32 +00:00

[options] Include custom conf in final argv (closes #11741)

This commit is contained in:
Sergey M․ 2017-01-16 22:07:12 +07:00
parent 906420cae3
commit 0ce8c66fb0
No known key found for this signature in database
GPG key ID: 2C393E0F18A9236D

View file

@ -867,7 +867,7 @@ def parseOpts(overrideArguments=None):
if '--ignore-config' not in system_conf:
user_conf = _readUserConf()
argv = system_conf + user_conf + command_line_conf
argv = system_conf + user_conf + custom_conf + command_line_conf
opts, args = parser.parse_args(argv)
if opts.verbose:
for conf_label, conf in (