diff options
Diffstat (limited to 'youtube_dl/options.py')
| -rw-r--r-- | youtube_dl/options.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/youtube_dl/options.py b/youtube_dl/options.py index f2e3ad7a1..5302b67cc 100644 --- a/youtube_dl/options.py +++ b/youtube_dl/options.py @@ -812,11 +812,11 @@ def parseOpts(overrideArguments=None):              system_conf = []              user_conf = []          else: -            system_conf = compat_conf(_readOptions('/etc/youtube-dl.conf')) +            system_conf = _readOptions('/etc/youtube-dl.conf')              if '--ignore-config' in system_conf:                  user_conf = []              else: -                user_conf = compat_conf(_readUserConf()) +                user_conf = _readUserConf()          argv = system_conf + user_conf + command_line_conf          opts, args = parser.parse_args(argv) | 
