mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-27 06:10:12 +01:00
parent
a392adf56c
commit
b5d265633d
|
@ -1217,19 +1217,15 @@ def get_configs():
|
||||||
return
|
return
|
||||||
|
|
||||||
def read_options(path, user=False):
|
def read_options(path, user=False):
|
||||||
func = _readUserConf if user else _readOptions
|
for package in ('yt-dlp', 'youtube-dlc'):
|
||||||
current_path = os.path.join(path, 'yt-dlp.conf')
|
|
||||||
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')
|
|
||||||
config = func(current_path, default=None)
|
|
||||||
if user:
|
if user:
|
||||||
config, current_path = config
|
config, current_path = _readUserConf(package, default=None)
|
||||||
if config is None:
|
else:
|
||||||
return [], None
|
current_path = os.path.join(path, '%s.conf' % package)
|
||||||
return config, current_path
|
config = _readOptions(current_path, default=None)
|
||||||
|
if config is not None:
|
||||||
|
return config, current_path
|
||||||
|
return [], None
|
||||||
|
|
||||||
configs['portable'], paths['portable'] = read_options(get_executable_path())
|
configs['portable'], paths['portable'] = read_options(get_executable_path())
|
||||||
if '--ignore-config' in configs['portable']:
|
if '--ignore-config' in configs['portable']:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user