summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-06-11 18:20:09 +0000
committerGerrit Code Review <review@openstack.org>2013-06-11 18:20:09 +0000
commit165b98415d3949f8a9dddbdbc1f304fb7d257718 (patch)
tree6cf22c01a1cd64e17e90b4ccb61c193d4f040763
parentebaa578351c9c6b47c2f28ef6d74451e1483036b (diff)
parent4dfbe6637b46f68200802ddeb07bba2482ea40eb (diff)
downloadoslo-165b98415d3949f8a9dddbdbc1f304fb7d257718.tar.gz
oslo-165b98415d3949f8a9dddbdbc1f304fb7d257718.tar.xz
oslo-165b98415d3949f8a9dddbdbc1f304fb7d257718.zip
Merge "Raise a DeprecationWarning when openstack.common.deprecated is imported"
-rw-r--r--openstack/common/deprecated/__init__.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/openstack/common/deprecated/__init__.py b/openstack/common/deprecated/__init__.py
index e69de29..d0ce7dd 100644
--- a/openstack/common/deprecated/__init__.py
+++ b/openstack/common/deprecated/__init__.py
@@ -0,0 +1,21 @@
+# Copyright 2013 Red Hat, Inc
+# All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+
+import warnings
+
+msg = ("Modules in this package are deprecated "
+ "and will be removed in future releases")
+
+warnings.warn(msg, DeprecationWarning)