diff options
author | Isis Lovecruft <isis@torproject.org> | 2013-02-16 23:03:46 +0000 |
---|---|---|
committer | Isis Lovecruft <isis@torproject.org> | 2013-02-16 23:03:46 +0000 |
commit | d925c51439a85d552afaca58fc1f87a8745c3c16 (patch) | |
tree | 16de6c2c22bdb98e08ba25fecbfe0ff7577bcaca /src/leap/mx | |
parent | 92ab44a213b88b510e9d86865a3630fa0b664313 (diff) |
Add exceptions and util to leap/mx/__init__.py.
Diffstat (limited to 'src/leap/mx')
-rw-r--r-- | src/leap/mx/__init__.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/leap/mx/__init__.py b/src/leap/mx/__init__.py index 507efee..27fadca 100644 --- a/src/leap/mx/__init__.py +++ b/src/leap/mx/__init__.py @@ -1,3 +1,8 @@ -#from . import util +#-*- encoding: utf-8 -*- +""" +leap/mx/__init__.py +------------------- +Module intialization file for leap.mx . +""" -__all__ = ['alias_resolver', 'runner', 'tests', 'couchdb'] +__all__ = ['alias_resolver', 'couchdb', 'exceptions', 'runner', 'util'] |