summaryrefslogtreecommitdiff
path: root/debian/python-leap.common/usr/share/pyshared/leap/common/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'debian/python-leap.common/usr/share/pyshared/leap/common/__init__.py')
-rw-r--r--debian/python-leap.common/usr/share/pyshared/leap/common/__init__.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/debian/python-leap.common/usr/share/pyshared/leap/common/__init__.py b/debian/python-leap.common/usr/share/pyshared/leap/common/__init__.py
deleted file mode 100644
index 5bcbb38..0000000
--- a/debian/python-leap.common/usr/share/pyshared/leap/common/__init__.py
+++ /dev/null
@@ -1,19 +0,0 @@
-import logging
-
-from leap.common import certs
-from leap.common import check
-from leap.common import files
-from leap.common import events
-
-logger = logging.getLogger(__name__)
-
-try:
- import pygeoip
- HAS_GEOIP = True
-except ImportError:
- #logger.debug('PyGeoIP not found. Disabled Geo support.')
- HAS_GEOIP = False
-
-__all__ = ["certs", "check", "files", "events"]
-
-__version__ = "0.2.3-dev"