Browse Source

[downloader/__init__] Define proper __all__

Philipp Hagemeister 10 years ago
parent
commit
14d4e90eb1
1 changed files with 5 additions and 0 deletions
  1. 5 0
      youtube_dl/downloader/__init__.py

+ 5 - 0
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',
+]