summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-09-22 11:09:25 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2013-09-22 11:09:25 +0200
commitc35f9e72ce842ecd476bee3767527da0e675dd1a (patch)
treea5d72fe84f8ad4addda478e3d5836c076d9e31cb
parentf8061589e66f12f6c2ffac3d7bfba2a7ac0294d5 (diff)
downloadyoutube-dl-c35f9e72ce842ecd476bee3767527da0e675dd1a.tar.gz
youtube-dl-c35f9e72ce842ecd476bee3767527da0e675dd1a.tar.xz
youtube-dl-c35f9e72ce842ecd476bee3767527da0e675dd1a.zip
Move cachedir doc
-rw-r--r--youtube_dl/FileDownloader.py2
-rw-r--r--youtube_dl/YoutubeDL.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/FileDownloader.py b/youtube_dl/FileDownloader.py
index 604714134..0b5a5d77d 100644
--- a/youtube_dl/FileDownloader.py
+++ b/youtube_dl/FileDownloader.py
@@ -39,8 +39,6 @@ class FileDownloader(object):
     test:              Download only first bytes to test the downloader.
     min_filesize:      Skip files smaller than this size
     max_filesize:      Skip files larger than this size
-    cachedir:          Location of the cache files in the filesystem.
-                       "NONE" to disable filesystem cache.
     """
 
     params = None
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py
index fa24ebe0d..ead1ccb1c 100644
--- a/youtube_dl/YoutubeDL.py
+++ b/youtube_dl/YoutubeDL.py
@@ -81,6 +81,8 @@ class YoutubeDL(object):
     keepvideo:         Keep the video file after post-processing
     daterange:         A DateRange object, download only if the upload_date is in the range.
     skip_download:     Skip the actual download of the video file
+    cachedir:          Location of the cache files in the filesystem.
+                       "NONE" to disable filesystem cache.
     
     The following parameters are not used by YoutubeDL itself, they are used by
     the FileDownloader: