summaryrefslogtreecommitdiff
path: root/rtslib/__init__.py
diff options
context:
space:
mode:
authorAndy Grover <agrover@redhat.com>2014-12-02 16:46:59 -0800
committerAndy Grover <agrover@redhat.com>2014-12-02 16:46:59 -0800
commitc1cc01aaf7d6e1c650845a94c6e52eb5b1c185b0 (patch)
tree378c50db7ce739f3ee38d56611c0efdbe8b74af8 /rtslib/__init__.py
parent2b25dcbb52603eed7e43e184e8e3e1fa0d32655b (diff)
downloadrtslib-fb-c1cc01aaf7d6e1c650845a94c6e52eb5b1c185b0.tar.gz
Change to exporting under 'rtslib' and 'rtslib_fb" pkg names
We should move off of 'rtslib' because we are incompatible with the original package using this name. Export as 'rtslib_fb', and add a warning to switch to importing by the new package name if using the old import name. Signed-off-by: Andy Grover <agrover@redhat.com>
Diffstat (limited to 'rtslib/__init__.py')
-rw-r--r--rtslib/__init__.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/rtslib/__init__.py b/rtslib/__init__.py
index 72d3067..5b6dfd6 100644
--- a/rtslib/__init__.py
+++ b/rtslib/__init__.py
@@ -16,6 +16,11 @@ License for the specific language governing permissions and limitations
under the License.
'''
+if __name__ == "rtslib":
+ from warnings import warn
+ warn("'rtslib' package name for rtslib-fb is deprecated, please"
+ + " instead import 'rtslib_fb'", UserWarning, stacklevel=2)
+
from root import RTSRoot
from utils import RTSLibError, RTSLibBrokenLink, RTSLibNotInCFS