youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 0ce8c66fb05fefbe51ac1eca8d3ddbd561b38a54
parent 906420cae37ee3c2f48d23c3a4fa0543a66947d5
Author: Sergey M․ <dstftw@gmail.com>
Date:   Mon, 16 Jan 2017 22:07:12 +0700

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

Diffstat:
Myoutube_dl/options.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/options.py b/youtube_dl/options.py @@ -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 (