summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-12-04 07:57:18 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-12-04 07:57:18 +0100
commitd4e06d4a83b223e82814cd160bdf62e3a82f33e4 (patch)
tree67555f7b79483a27a4e6e830b6331c7e209013dc
parenteecd6a467dd6b28cd0cdd63a9cebd5a8bfafd4c4 (diff)
downloadyoutube-dl-d4e06d4a83b223e82814cd160bdf62e3a82f33e4.tar.gz
youtube-dl-d4e06d4a83b223e82814cd160bdf62e3a82f33e4.tar.xz
youtube-dl-d4e06d4a83b223e82814cd160bdf62e3a82f33e4.zip
[options] Standardize mentoined configuration file location (Fixes #4367)
-rw-r--r--youtube_dl/options.py5
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',