diff options
| author | Jenkins <jenkins@review.openstack.org> | 2015-06-14 17:52:27 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2015-06-14 17:52:27 +0000 |
| commit | 724abb37b8823bf384cdafa5094e372bc511b939 (patch) | |
| tree | ccae5a2e5ef4242929e82e1978b040c7dc24db0b | |
| parent | ec903a1f093325b9285ac028c4356fc3a5838ef3 (diff) | |
| parent | b3289601c7123f412d043f16fc342ff9bfdf72b7 (diff) | |
| download | python-openstackclient-724abb37b8823bf384cdafa5094e372bc511b939.tar.gz | |
Merge "Fix the typo in `openstackclient/shell.py`"
| -rw-r--r-- | openstackclient/shell.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openstackclient/shell.py b/openstackclient/shell.py index 36483b3a..4109b8bc 100644 --- a/openstackclient/shell.py +++ b/openstackclient/shell.py @@ -43,7 +43,7 @@ DEFAULT_DOMAIN = 'default' def prompt_for_password(prompt=None): """Prompt user for a password - Propmpt for a password if stdin is a tty. + Prompt for a password if stdin is a tty. """ if not prompt: @@ -228,7 +228,7 @@ class OpenStackShell(app.App): # Parent __init__ parses argv into self.options super(OpenStackShell, self).initialize_app(argv) - # Set the default plugin to token_endpoint if rl and token are given + # Set the default plugin to token_endpoint if url and token are given if (self.options.url and self.options.token): # Use service token authentication cloud_config.set_default('auth_type', 'token_endpoint') |
