diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-12-04 07:57:18 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-12-04 07:57:18 +0100 |
commit | d4e06d4a83b223e82814cd160bdf62e3a82f33e4 (patch) | |
tree | 67555f7b79483a27a4e6e830b6331c7e209013dc /youtube_dl | |
parent | eecd6a467dd6b28cd0cdd63a9cebd5a8bfafd4c4 (diff) |
[options] Standardize mentoined configuration file location (Fixes #4367)
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/options.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/youtube_dl/options.py b/youtube_dl/options.py index 2e8c71508..041ca83d8 100644 --- a/youtube_dl/options.py +++ b/youtube_dl/options.py @@ -163,7 +163,10 @@ def parseOpts(overrideArguments=None): general.add_option( '--ignore-config', action='store_true', - help='Do not read configuration files. When given in the global configuration file /etc/youtube-dl.conf: do not read the user configuration in ~/.config/youtube-dl.conf (%APPDATA%/youtube-dl/config.txt on Windows)') + help='Do not read configuration files. ' + 'When given in the global configuration file /etc/youtube-dl.conf: ' + 'Do not read the user configuration in ~/.config/youtube-dl/config ' + '(%APPDATA%/youtube-dl/config.txt on Windows)') general.add_option( '--flat-playlist', action='store_const', dest='extract_flat', const='in_playlist', |