projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b74e86f
)
[downloader/__init__] Define proper __all__
author
Philipp Hagemeister
<phihag@phihag.de>
Sun, 23 Nov 2014 21:25:12 +0000
(22:25 +0100)
committer
Philipp Hagemeister
<phihag@phihag.de>
Sun, 23 Nov 2014 21:25:12 +0000
(22:25 +0100)
youtube_dl/downloader/__init__.py
patch
|
blob
|
history
diff --git
a/youtube_dl/downloader/__init__.py
b/youtube_dl/downloader/__init__.py
index 3f941596edd83edda99917b57187485941133e8f..31e28df58e828f8c5434390ff18a63358215924a 100644
(file)
--- 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',
+]