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, 19 insertions, 0 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
new file mode 100644
index 0000000..5bcbb38
--- /dev/null
+++ b/debian/python-leap.common/usr/share/pyshared/leap/common/__init__.py
@@ -0,0 +1,19 @@
+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"