summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-01-02 23:26:46 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-01-02 23:27:47 +0100
commit0f3065832973b742ccc884e91732c6c0af8fa17d (patch)
treecec7136f7ce26516e3d4f89586fa7133b8055ac8
parent31c1cf5a9dd0a2249b64118af95009d8a510bf6b (diff)
downloadyoutube-dl-0f3065832973b742ccc884e91732c6c0af8fa17d.tar.gz
youtube-dl-0f3065832973b742ccc884e91732c6c0af8fa17d.tar.xz
youtube-dl-0f3065832973b742ccc884e91732c6c0af8fa17d.zip
Clarify --cache-dir (#858)
-rw-r--r--youtube_dl/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py
index 2e81556da..eac7c42eb 100644
--- a/youtube_dl/__init__.py
+++ b/youtube_dl/__init__.py
@@ -186,7 +186,7 @@ def parseOpts(overrideArguments=None):
     general.add_option('--no-check-certificate', action='store_true', dest='no_check_certificate', default=False, help='Suppress HTTPS certificate validation.')
     general.add_option(
         '--cache-dir', dest='cachedir', default=get_cachedir(), metavar='DIR',
-        help='Location in the filesystem where youtube-dl can store downloaded information permanently. By default $XDG_CACHE_HOME/youtube-dl or ~/.cache/youtube-dl .')
+        help='Location in the filesystem where youtube-dl can store some downloaded information permanently. By default $XDG_CACHE_HOME/youtube-dl or ~/.cache/youtube-dl .')
     general.add_option(
         '--no-cache-dir', action='store_const', const=None, dest='cachedir',
         help='Disable filesystem caching')