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
This commit is contained in:
Dirk Mueller 2013-10-24 14:24:33 +02:00
parent a1bda219a5
commit 1fa1330e1d

View File

@ -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