summaryrefslogtreecommitdiff
path: root/keystoneclient/auth/identity/access.py
diff options
context:
space:
mode:
authorSteve Martinelli <stevemar@ca.ibm.com>2016-01-25 01:48:16 -0500
committerSteve Martinelli <stevemar@ca.ibm.com>2016-01-25 01:54:35 -0500
commit81fdaabf3fd73b6ed7fc8e8b4eb550d9206c017a (patch)
tree56d7cafd244a46fac39c75b94b2b55d38d475217 /keystoneclient/auth/identity/access.py
parent056740cd2d0513c7f79d459c8c78c3133c43adef (diff)
downloadpython-keystoneclient-81fdaabf3fd73b6ed7fc8e8b4eb550d9206c017a.tar.gz
use positional library instead of utils
swap instances of utils.positional with the positional library. Change-Id: Id8a9961e68d287a802f25512fc970829e9feb5c2
Diffstat (limited to 'keystoneclient/auth/identity/access.py')
-rw-r--r--keystoneclient/auth/identity/access.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/keystoneclient/auth/identity/access.py b/keystoneclient/auth/identity/access.py
index 46df3bf..5849b75 100644
--- a/keystoneclient/auth/identity/access.py
+++ b/keystoneclient/auth/identity/access.py
@@ -10,8 +10,9 @@
# License for the specific language governing permissions and limitations
# under the License.
+from positional import positional
+
from keystoneclient.auth.identity import base
-from keystoneclient import utils
class AccessInfoPlugin(base.BaseIdentityPlugin):
@@ -31,7 +32,7 @@ class AccessInfoPlugin(base.BaseIdentityPlugin):
if using the AUTH_INTERFACE with get_endpoint. (optional)
"""
- @utils.positional()
+ @positional()
def __init__(self, auth_ref, auth_url=None):
super(AccessInfoPlugin, self).__init__(auth_url=auth_url,
reauthenticate=False)