summaryrefslogtreecommitdiffstats
path: root/chromium/tools/site_compare/scrapers/ie/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/tools/site_compare/scrapers/ie/__init__.py')
-rwxr-xr-xchromium/tools/site_compare/scrapers/ie/__init__.py28
1 files changed, 0 insertions, 28 deletions
diff --git a/chromium/tools/site_compare/scrapers/ie/__init__.py b/chromium/tools/site_compare/scrapers/ie/__init__.py
deleted file mode 100755
index b4dab09e4c2..00000000000
--- a/chromium/tools/site_compare/scrapers/ie/__init__.py
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/usr/bin/env python
-# Copyright (c) 2011 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-"""Selects the appropriate scraper for Internet Explorer."""
-
-
-def GetScraper(version):
- """Returns the scraper module for the given version.
-
- Args:
- version: version string of IE, or None for most recent
-
- Returns:
- scrape module for given version
- """
-
- # Pychecker will warn that the parameter is unused; we only
- # support one version of IE at this time
-
- # We only have one version of the IE scraper for now
- return __import__("ie7", globals(), locals(), [''])
-
-
-# if invoked rather than imported, test
-if __name__ == "__main__":
- print GetScraper("7.0.5370.1").version