summaryrefslogtreecommitdiffstats
path: root/openstack
diff options
context:
space:
mode:
authorFlaper Fesp <flaper87@gmail.com>2013-06-11 14:51:52 +0200
committerFlaper Fesp <flaper87@gmail.com>2013-06-11 17:28:25 +0200
commit4dfbe6637b46f68200802ddeb07bba2482ea40eb (patch)
tree7184fb1ac913f8ba2a15c23d7435ef7fdd2605bb /openstack
parentfaddbbe318cf62791624469c4304ae4fdcc2e639 (diff)
downloadoslo-4dfbe6637b46f68200802ddeb07bba2482ea40eb.tar.gz
oslo-4dfbe6637b46f68200802ddeb07bba2482ea40eb.tar.xz
oslo-4dfbe6637b46f68200802ddeb07bba2482ea40eb.zip
Raise a DeprecationWarning when openstack.common.deprecated is imported
We now have a deprecated package in Oslo where deprecated modules / packages will be moved. In order to make this more clear and warn users, this patch adds a warning in deprecated's __init__.py module. Change-Id: Id7097da1b034499fec1b6d44a358223476d9ba83
Diffstat (limited to 'openstack')
-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)