diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-10-11 20:21:04 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-10-12 15:21:31 +0530 |
commit | 7b38649845c1516e4ab4e29b6bb84b2302269663 (patch) | |
tree | 87e16070b937ab0bad105ae79b70e61a33e37870 /yt_dlp/options.py | |
parent | e88d44c6ee66e2a1b814c2fe89fc53b3c3e029ef (diff) | |
download | hypervideo-pre-7b38649845c1516e4ab4e29b6bb84b2302269663.tar.lz hypervideo-pre-7b38649845c1516e4ab4e29b6bb84b2302269663.tar.xz hypervideo-pre-7b38649845c1516e4ab4e29b6bb84b2302269663.zip |
Fix verbose head not showing custom configs
Diffstat (limited to 'yt_dlp/options.py')
-rw-r--r-- | yt_dlp/options.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/options.py b/yt_dlp/options.py index f45c548f2..d2dc7687b 100644 --- a/yt_dlp/options.py +++ b/yt_dlp/options.py @@ -1590,7 +1590,7 @@ def parseOpts(overrideArguments=None): parser.error('config-location %s does not exist.' % location) config = _readOptions(location, default=None) if config: - configs['custom'], paths['config'] = config, location + configs['custom'], paths['custom'] = config, location if opts.ignoreconfig: return |