summaryrefslogtreecommitdiff
path: root/keystoneclient/shell.py
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-12-03 03:54:45 +0000
committerGerrit Code Review <review@openstack.org>2013-12-03 03:54:45 +0000
commit81460b55feb2ad4554a2dc466da3fbdb6919d9f8 (patch)
tree177a837a3667cd4c51081de536757505e8af7d86 /keystoneclient/shell.py
parentb6becd0492c0b12445999fdf608ecd6a61a62c32 (diff)
parent272fb6ac782fcb92b9444aa3e5f24bbba31ca2bb (diff)
downloadpython-keystoneclient-81460b55feb2ad4554a2dc466da3fbdb6919d9f8.tar.gz
Merge "Fix typo in keystoneclient"
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 ea09eb3..88d8317 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(