diff options
author | Emanuel Hoogeveen <55082669+ehoogeveen-medweb@users.noreply.github.com> | 2022-03-03 15:33:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-03 06:33:32 -0800 |
commit | 45806d44a7bc96dc0199410fec81cdce6015a546 (patch) | |
tree | 02ece02e5e4874e27c099f504a6b532cb10c7a52 /yt_dlp/options.py | |
parent | 747c0bd127ebd205278d31ec7216ffa02fe96734 (diff) | |
download | hypervideo-pre-45806d44a7bc96dc0199410fec81cdce6015a546.tar.lz hypervideo-pre-45806d44a7bc96dc0199410fec81cdce6015a546.tar.xz hypervideo-pre-45806d44a7bc96dc0199410fec81cdce6015a546.zip |
[downloader] Obey `--file-access-retries` when deleting/renaming (#2224)
Authored by: ehoogeveen-medweb
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 6fcef98cd..9908f3975 100644 --- a/yt_dlp/options.py +++ b/yt_dlp/options.py @@ -727,7 +727,7 @@ def create_parser(): help='Number of retries (default is %default), or "infinite"') downloader.add_option( '--file-access-retries', - dest='file_access_retries', metavar='RETRIES', default=10, + dest='file_access_retries', metavar='RETRIES', default=3, help='Number of times to retry on file access error (default is %default), or "infinite"') downloader.add_option( '--fragment-retries', |