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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « mozdownload.egg-info/top_level.txt ('k') | mozdownload/cli.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # This Source Code Form is subject to the terms of the Mozilla Public 1 # This Source Code Form is subject to the terms of the Mozilla Public
2 # License, v. 2.0. If a copy of the MPL was not distributed with this file, 2 # License, v. 2.0. If a copy of the MPL was not distributed with this file,
3 # You can obtain one at http://mozilla.org/MPL/2.0/. 3 # You can obtain one at http://mozilla.org/MPL/2.0/.
4 4
5 from scraper import * 5 from .factory import FactoryScraper
6
7 from .scraper import (Scraper,
8 DailyScraper,
9 DirectScraper,
10 ReleaseScraper,
11 ReleaseCandidateScraper,
12 TinderboxScraper,
13 TryScraper,
14 )
15
16 __all__ = [FactoryScraper,
17 Scraper,
18 DailyScraper,
19 DirectScraper,
20 ReleaseScraper,
21 ReleaseCandidateScraper,
22 TinderboxScraper,
23 TryScraper,
24 ]
OLDNEW
« 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