summaryrefslogtreecommitdiff
path: root/rtslib/__init__.py
diff options
context:
space:
mode:
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