youtube-dl

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

commit 14d4e90eb155d29e9dc448350f45f0acab5d68d3
parent b74e86f48aa6d007b681e2723ff28fe82a49fa9d
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Sun, 23 Nov 2014 22:25:12 +0100

[downloader/__init__] Define proper __all__

Diffstat:
Myoutube_dl/downloader/__init__.py | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/youtube_dl/downloader/__init__.py b/youtube_dl/downloader/__init__.py @@ -30,3 +30,8 @@ def get_suitable_downloader(info_dict): return F4mFD else: return HttpFD + +__all__ = [ + 'get_suitable_downloader', + 'FileDownloader', +]