aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-10-02 14:37:19 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2013-10-02 14:37:19 +0200
commitbe8fe32c92affa812c5522c463709ba5376a1ea6 (patch)
tree89e420dbd2e69ca125887212dd1a314761f30bb5
parentc38b1e776dcc525b6fbe0660c484f1d50d2e0165 (diff)
downloadyoutube-dl-be8fe32c92affa812c5522c463709ba5376a1ea6.tar.xz
Fix help of --cachedir
-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 62b557986..03df835f2 100644
--- a/youtube_dl/__init__.py
+++ b/youtube_dl/__init__.py
@@ -169,7 +169,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(),
- help='Location in the filesystem where youtube-dl can store downloaded information permanently. %default by default')
+ help='Location in the filesystem where youtube-dl can store 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')