diff options
| author | tanlin <lin.tan@intel.com> | 2014-02-13 16:42:04 +0800 |
|---|---|---|
| committer | tanlin <lin.tan@intel.com> | 2014-02-14 09:16:20 +0800 |
| commit | d8bdd2b5ed2c890df84718be6f977a8d93eddb86 (patch) | |
| tree | 5fbdc244fd443a290e211d08e2e8648bdde3b30e /openstackclient/common/openstackkeyring.py | |
| parent | 380d78c8564ca81c60d46176af622fd92a7b1582 (diff) | |
| download | python-openstackclient-d8bdd2b5ed2c890df84718be6f977a8d93eddb86.tar.gz | |
Rename Openstack to OpenStack
Change-Id: I9e5b245141290a4b642900fbc46b98bd4f44c321
Diffstat (limited to 'openstackclient/common/openstackkeyring.py')
| -rw-r--r-- | openstackclient/common/openstackkeyring.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/openstackclient/common/openstackkeyring.py b/openstackclient/common/openstackkeyring.py index e60ce71c..bf9d5b71 100644 --- a/openstackclient/common/openstackkeyring.py +++ b/openstackclient/common/openstackkeyring.py @@ -13,7 +13,7 @@ # under the License. # -"""Keyring backend for Openstack, to store encrypted password in a file.""" +"""Keyring backend for OpenStack, to store encrypted password in a file.""" from Crypto.Cipher import AES @@ -24,8 +24,8 @@ import os KEYRING_FILE = os.path.join(os.path.expanduser('~'), '.openstack-keyring.cfg') -class OpenstackKeyring(keyring.backends.file.BaseKeyring): - """Openstack Keyring to store encrypted password.""" +class OpenStackKeyring(keyring.backends.file.BaseKeyring): + """OpenStack Keyring to store encrypted password.""" filename = KEYRING_FILE def supported(self): @@ -56,5 +56,5 @@ class OpenstackKeyring(keyring.backends.file.BaseKeyring): def os_keyring(): """Initialize the openstack keyring.""" - ring = 'openstackclient.common.openstackkeyring.OpenstackKeyring' + ring = 'openstackclient.common.openstackkeyring.OpenStackKeyring' return keyring.core.load_keyring(None, ring) |
