summaryrefslogtreecommitdiff
path: root/openstackclient/common/openstackkeyring.py
diff options
context:
space:
mode:
authorDirk Mueller <dirk@dmllr.de>2013-10-24 14:24:33 +0200
committerDirk Mueller <dirk@dmllr.de>2013-10-24 14:25:40 +0200
commit1fa1330e1d8bc9361bbe8c88490a20f9b8fddec1 (patch)
tree0c144a0c283832d0117ac43f0d284cc880012d1c /openstackclient/common/openstackkeyring.py
parenta1bda219a5160acca6423aea932a9f8103049373 (diff)
downloadpython-openstackclient-1fa1330e1d8bc9361bbe8c88490a20f9b8fddec1.tar.gz
Adjust to non-deprecated names in Keyring 1.6.+
Keyring 1.1 moved the concrete backend implementations into their own modules. As we depend on 1.6.1+, we can make use of the new name and remove the old one without deprecation-fallback. Change-Id: I0682b13fc9f488b3f3d9fd057f712909fcd48bc4
Diffstat (limited to 'openstackclient/common/openstackkeyring.py')
-rw-r--r--openstackclient/common/openstackkeyring.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/openstackclient/common/openstackkeyring.py b/openstackclient/common/openstackkeyring.py
index e7431e54..34c994b7 100644
--- a/openstackclient/common/openstackkeyring.py
+++ b/openstackclient/common/openstackkeyring.py
@@ -24,7 +24,7 @@ import os
KEYRING_FILE = os.path.join(os.path.expanduser('~'), '.openstack-keyring.cfg')
-class OpenstackKeyring(keyring.backend.BasicFileKeyring):
+class OpenstackKeyring(keyring.backends.file.BaseKeyring):
"""Openstack Keyring to store encrypted password."""
filename = KEYRING_FILE