Clarify --cache-dir (#858)
authorPhilipp Hagemeister <phihag@phihag.de>
Thu, 2 Jan 2014 22:26:46 +0000 (23:26 +0100)
committerPhilipp Hagemeister <phihag@phihag.de>
Thu, 2 Jan 2014 22:27:47 +0000 (23:27 +0100)
youtube_dl/__init__.py

index 2e81556dad1fbbe90fd93f70c5b69e20d660e39e..eac7c42eb4139c5cd80908bd13efbcaa65d38b0b 100644 (file)
@@ -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')