summaryrefslogtreecommitdiff
path: root/src/leap/common/__init__.py
diff options
context:
space:
mode:
authorTomás Touceda <chiiph@leap.se>2013-06-28 14:55:33 -0300
committerTomás Touceda <chiiph@leap.se>2013-06-28 14:55:33 -0300
commitd071efe20a285e579111f568e2ff994a6171249f (patch)
tree824ea959c02c8ed3af36c0cec8421e0748d311cc /src/leap/common/__init__.py
parentb966eec96fd3621908baab8697de8e2ed61ba136 (diff)
parenta0f78f9d708cc6fe686ee5860cdc34909391b14b (diff)
Merge branch 'release-0.2.5'
Diffstat (limited to 'src/leap/common/__init__.py')
-rw-r--r--src/leap/common/__init__.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/leap/common/__init__.py b/src/leap/common/__init__.py
index 9467c46..2b30715 100644
--- a/src/leap/common/__init__.py
+++ b/src/leap/common/__init__.py
@@ -3,6 +3,7 @@ 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__)
@@ -10,9 +11,9 @@ try:
import pygeoip
HAS_GEOIP = True
except ImportError:
- logger.debug('PyGeoIP not found. Disabled Geo support.')
+ #logger.debug('PyGeoIP not found. Disabled Geo support.')
HAS_GEOIP = False
-__all__ = ["certs", "check", "files"]
+__all__ = ["certs", "check", "files", "events"]
-__version__ = "0.2.0-dev"
+__version__ = "0.2.5"