summaryrefslogtreecommitdiff
path: root/client/src/leap/soledad/__init__.py
diff options
context:
space:
mode:
authordrebs <drebs@leap.se>2013-08-19 10:13:51 -0300
committerdrebs <drebs@leap.se>2013-08-21 14:40:33 -0300
commit11ac38cb021e97cca77df2e9cf15f9136b24fc43 (patch)
tree2f4e3e004f57ac3436d8258937bf2145ca3de576 /client/src/leap/soledad/__init__.py
parentf424e2fee278bd9f3a9fb838025db7d4c1bb44bb (diff)
Split soledad into common, client and server.
Diffstat (limited to 'client/src/leap/soledad/__init__.py')
-rw-r--r--client/src/leap/soledad/__init__.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/client/src/leap/soledad/__init__.py b/client/src/leap/soledad/__init__.py
new file mode 100644
index 00000000..f48ad105
--- /dev/null
+++ b/client/src/leap/soledad/__init__.py
@@ -0,0 +1,6 @@
+# See http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages
+try:
+ __import__('pkg_resources').declare_namespace(__name__)
+except ImportError:
+ from pkgutil import extend_path
+ __path__ = extend_path(__path__, __name__)