youtube-dl

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

commit 6db274e057873feb256568f0e27c9a03a2b8d16c
parent 0c92b57398417529ad22e80df683a2fb4adac4da
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Wed, 23 Jul 2014 02:47:52 +0200

Remove legacy FileDownloader (Closes #2964)

Diffstat:
Dyoutube_dl/FileDownloader.py | 12------------
1 file changed, 0 insertions(+), 12 deletions(-)

diff --git a/youtube_dl/FileDownloader.py b/youtube_dl/FileDownloader.py @@ -1,12 +0,0 @@ -# Legacy file for backwards compatibility, use youtube_dl.downloader instead! -from .downloader import FileDownloader as RealFileDownloader -from .downloader import get_suitable_downloader - - -# This class reproduces the old behaviour of FileDownloader -class FileDownloader(RealFileDownloader): - def _do_download(self, filename, info_dict): - real_fd = get_suitable_downloader(info_dict)(self.ydl, self.params) - for ph in self._progress_hooks: - real_fd.add_progress_hook(ph) - return real_fd.download(filename, info_dict)