summaryrefslogtreecommitdiff
path: root/openstackclient/common
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2014-02-11 18:44:30 +0000
committerGerrit Code Review <review@openstack.org>2014-02-11 18:44:30 +0000
commitc8354b8d8310dce9b0296597e41f9a355d7067c0 (patch)
tree4faf50aad3e5cedaa23e4aeabff215f3eb2b0238 /openstackclient/common
parent9aa207eb9d66ae3240606a9b497b253b37566c95 (diff)
parent8aa0b07fbc4dd3cd2c7d99513407b652eaa39d85 (diff)
downloadpython-openstackclient-c8354b8d8310dce9b0296597e41f9a355d7067c0.tar.gz
Merge "Fix misspellings in python openstackclient"
Diffstat (limited to 'openstackclient/common')
-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 e60ce71c..115e5644 100644
--- a/openstackclient/common/openstackkeyring.py
+++ b/openstackclient/common/openstackkeyring.py
@@ -37,7 +37,7 @@ class OpenstackKeyring(keyring.backends.file.BaseKeyring):
block_size = 32
padding = '0'
- # init the cipher with the class name, upto block_size
+ # init the cipher with the class name, up to block_size
password = __name__[block_size:]
password = password + (block_size - len(password) %
block_size) * padding