summaryrefslogtreecommitdiffstats
path: root/openstack/__init__.py
diff options
context:
space:
mode:
authorJason Kölker <jason@koelker.net>2011-09-27 13:03:10 -0500
committerJason Kölker <jason@koelker.net>2011-09-27 13:03:10 -0500
commitd6eae0ebb7378e091ea094e9380a968337e8c32c (patch)
tree302532c34b48d7e9ac7dc75cea09ede32d0b5aaf /openstack/__init__.py
downloadoslo-d6eae0ebb7378e091ea094e9380a968337e8c32c.tar.gz
oslo-d6eae0ebb7378e091ea094e9380a968337e8c32c.tar.xz
oslo-d6eae0ebb7378e091ea094e9380a968337e8c32c.zip
initial commit
Diffstat (limited to 'openstack/__init__.py')
-rw-r--r--openstack/__init__.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/openstack/__init__.py b/openstack/__init__.py
new file mode 100644
index 0000000..2f0c9cb
--- /dev/null
+++ b/openstack/__init__.py
@@ -0,0 +1,7 @@
+# This ensures the openstack namespace is defined
+try:
+ import pkg_resources
+ pkg_resources.declare_namespace(__name__)
+except ImportError:
+ import pkgutil
+ __path__ = pkgutil.extend_path(__path__, __name__)