Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(850)

Unified Diff: mozdownload/__init__.py

Issue 1451373002: Updating mozdownload (excluding tests) (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/mozdownload@master
Patch Set: Updated README.md Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mozdownload.egg-info/top_level.txt ('k') | mozdownload/cli.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mozdownload/__init__.py
diff --git a/mozdownload/__init__.py b/mozdownload/__init__.py
index 604bfe41ca52568550378d6cdb9383cab72c868d..9a099143d5d79eeb37780749fad7e85403d21885 100644
--- a/mozdownload/__init__.py
+++ b/mozdownload/__init__.py
@@ -2,4 +2,23 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
# You can obtain one at http://mozilla.org/MPL/2.0/.
-from scraper import *
+from .factory import FactoryScraper
+
+from .scraper import (Scraper,
+ DailyScraper,
+ DirectScraper,
+ ReleaseScraper,
+ ReleaseCandidateScraper,
+ TinderboxScraper,
+ TryScraper,
+ )
+
+__all__ = [FactoryScraper,
+ Scraper,
+ DailyScraper,
+ DirectScraper,
+ ReleaseScraper,
+ ReleaseCandidateScraper,
+ TinderboxScraper,
+ TryScraper,
+ ]
« no previous file with comments | « mozdownload.egg-info/top_level.txt ('k') | mozdownload/cli.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698