Browse Source

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

master-ytdl-org
Sergey M․ 8 years ago
parent
commit
0ce8c66fb0
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/options.py

+ 1
- 1
youtube_dl/options.py 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 (


Loading…
Cancel
Save