summaryrefslogtreecommitdiff
path: root/keystoneclient/shell.py
diff options
context:
space:
mode:
authorhuangtianhua <huangtianhua@huawei.com>2013-11-25 18:30:28 +0800
committerhuangtianhua <huangtianhua@huawei.com>2013-11-25 18:30:28 +0800
commit272fb6ac782fcb92b9444aa3e5f24bbba31ca2bb (patch)
tree495dc37ec0df055c79a81a9c429708ec54dbab35 /keystoneclient/shell.py
parentd55b2ba21df3e55632ecae69094d77b6e800db46 (diff)
downloadpython-keystoneclient-272fb6ac782fcb92b9444aa3e5f24bbba31ca2bb.tar.gz
Fix typo in keystoneclient
hypen-separated --> hyphen-separated initialzied --> initialized did't --> didn't sematics --> semantics Change-Id: I79841b76fdf7a267e325b8b9d917900ccb393c02 Closes-Bug: #1254660
Diffstat (limited to 'keystoneclient/shell.py')
-rw-r--r--keystoneclient/shell.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/keystoneclient/shell.py b/keystoneclient/shell.py
index c3a709f..2af23a5 100644
--- a/keystoneclient/shell.py
+++ b/keystoneclient/shell.py
@@ -277,7 +277,7 @@ class OpenStackIdentityShell(object):
def _find_actions(self, subparsers, actions_module):
for attr in (a for a in dir(actions_module) if a.startswith('do_')):
- # I prefer to be hypen-separated instead of underscores.
+ # I prefer to be hyphen-separated instead of underscores.
command = attr[3:].replace('_', '-')
callback = getattr(actions_module, attr)
desc = callback.__doc__ or ''
@@ -337,7 +337,7 @@ class OpenStackIdentityShell(object):
args.os_password = getpass.getpass('OS Password: ')
except EOFError:
pass
- # No password because we did't have a tty or the
+ # No password because we didn't have a tty or the
# user Ctl-D when prompted?
if not args.os_password:
raise exc.CommandError(