mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-10-03 16:51:50 +00:00
Compare commits
1 Commits
2023.10.13
...
2021.01.24
Author | SHA1 | Date | |
---|---|---|---|
|
3b3959630a |
@@ -1218,12 +1218,13 @@ def parseOpts(overrideArguments=None):
|
||||
|
||||
def read_options(path, user=False):
|
||||
func = _readUserConf if user else _readOptions
|
||||
current_path = os.path.join(path, 'yt-dlp.conf')
|
||||
ext = '' if user else '.conf'
|
||||
current_path = os.path.join(path, 'yt-dlp%s' % ext)
|
||||
config = func(current_path, default=None)
|
||||
if user:
|
||||
config, current_path = config
|
||||
if config is None:
|
||||
current_path = os.path.join(path, 'youtube-dlc.conf')
|
||||
current_path = os.path.join(path, 'youtube-dlc%s' % ext)
|
||||
config = func(current_path, default=None)
|
||||
if user:
|
||||
config, current_path = config
|
||||
|
Reference in New Issue
Block a user