From b3289601c7123f412d043f16fc342ff9bfdf72b7 Mon Sep 17 00:00:00 2001 From: Dave Chen <wei.d.chen@intel.com> Date: Sun, 14 Jun 2015 14:59:38 +0800 Subject: [PATCH] Fix the typo in `openstackclient/shell.py` Change-Id: Ia101f6d50ecd4a195aa93b1f289def581b0c6f38 --- openstackclient/shell.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openstackclient/shell.py b/openstackclient/shell.py index 36483b3a7e..4109b8bc26 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')