diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-09-07 17:35:45 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-09-07 17:38:05 +0530 |
commit | 17ffed184237b3686212cc73290e5cdd0f6f20ca (patch) | |
tree | 136fb3b5d955a507953ae78737222f9cec9b5044 /yt_dlp/options.py | |
parent | be9c0884d7af01f9b658975a98a91d71c420d34f (diff) |
[docs] Improvements
* Move detailed installation instructions to https://github.com/yt-dlp/yt-dlp/wiki/Installation
* Link to wiki where applicable
* Fix some mistakes. Closes #4853, Closes #4855, Closes #4852
* Improve some error messages
Diffstat (limited to 'yt_dlp/options.py')
-rw-r--r-- | yt_dlp/options.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/options.py b/yt_dlp/options.py index 4aa0acfbc..26392f619 100644 --- a/yt_dlp/options.py +++ b/yt_dlp/options.py @@ -1417,7 +1417,7 @@ def create_parser(): help='Do not load cookies from browser (default)') filesystem.add_option( '--cache-dir', dest='cachedir', default=None, metavar='DIR', - help='Location in the filesystem where youtube-dl can store some downloaded information (such as client ids and signatures) permanently. By default $XDG_CACHE_HOME/yt-dlp or ~/.cache/yt-dlp') + help='Location in the filesystem where yt-dlp can store some downloaded information (such as client ids and signatures) permanently. By default $XDG_CACHE_HOME/yt-dlp or ~/.cache/yt-dlp') filesystem.add_option( '--no-cache-dir', action='store_false', dest='cachedir', help='Disable filesystem caching') |