summaryrefslogtreecommitdiff
path: root/src/leap/common/__init__.py
diff options
context:
space:
mode:
authorkali <kali@leap.se>2013-03-14 09:59:11 +0900
committerkali <kali@leap.se>2013-03-15 01:02:37 +0900
commit5aea858b422b8034dfe77bdcfa8649862b567381 (patch)
treefb35104b7251c4aee2c481876001772d50b37bee /src/leap/common/__init__.py
parentd0dfad6ac2af360de6421ce74a6831b5b81ad019 (diff)
remove common module!
from now on this will live in a common repo, leap_common. We still need to add it to requirements
Diffstat (limited to 'src/leap/common/__init__.py')
-rw-r--r--src/leap/common/__init__.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/leap/common/__init__.py b/src/leap/common/__init__.py
deleted file mode 100644
index a70a9a8b..00000000
--- a/src/leap/common/__init__.py
+++ /dev/null
@@ -1,9 +0,0 @@
-import logging
-logger = logging.getLogger(__name__)
-
-try:
- import pygeoip
- HAS_GEOIP = True
-except ImportError:
- logger.debug('PyGeoIP not found. Disabled Geo support.')
- HAS_GEOIP = False