youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 6828c809e44fca7b19da3c62a11cea313a86b64e
parent 28479149ccf3425e6a6e35d3a155f6802629728a
Author: Sergey M․ <dstftw@gmail.com>
Date:   Thu, 13 Aug 2015 21:07:14 +0600

[downloader/fragment] Respect --retries for fragment based downloaders (Closes #6549)

Diffstat:
Myoutube_dl/downloader/fragment.py | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/youtube_dl/downloader/fragment.py b/youtube_dl/downloader/fragment.py @@ -35,6 +35,7 @@ class FragmentFD(FileDownloader): 'quiet': True, 'noprogress': True, 'ratelimit': self.params.get('ratelimit', None), + 'retries': self.params.get('retries', 0), 'test': self.params.get('test', False), } )