diff --git a/README.rst b/README.rst index e7d64bc8..ec1d1504 100644 --- a/README.rst +++ b/README.rst @@ -38,7 +38,7 @@ with keystone authentication: .. code:: python >>> from keystoneclient.auth import identity - >>> from keystoneclient import session + >>> from keystoneauth1 import session >>> from barbicanclient import client >>> # We'll use Keystone API v3 for authentication diff --git a/barbicanclient/client.py b/barbicanclient/client.py index 4e1d058f..f1910e7d 100644 --- a/barbicanclient/client.py +++ b/barbicanclient/client.py @@ -123,7 +123,7 @@ def Client(version=None, session=None, *args, **kwargs): """Barbican client used to interact with barbican service. :param version: The API version to use. - :param session: An instance of keystoneclient.session.Session that + :param session: An instance of keystoneauth1.session.Session that can be either authenticated, or not authenticated. When using a non-authenticated Session, you must provide some additional parameters. When no session is provided it will default to a diff --git a/barbicanclient/v1/client.py b/barbicanclient/v1/client.py index 2679f7d7..37ffc566 100644 --- a/barbicanclient/v1/client.py +++ b/barbicanclient/v1/client.py @@ -30,7 +30,7 @@ class Client(object): def __init__(self, session=None, *args, **kwargs): """Barbican client object used to interact with barbican service. - :param session: An instance of keystoneclient.session.Session that + :param session: An instance of keystoneauth1.session.Session that can be either authenticated, or not authenticated. When using a non-authenticated Session, you must provide some additional parameters. When no session is provided it will default to a