From 2e572f7138cffed576ea9b06079eeea5d01416da Mon Sep 17 00:00:00 2001 From: TerryHowe Date: Wed, 2 Sep 2015 12:53:47 -0600 Subject: [PATCH] Change auth plugin help text to auth type Change-Id: Iaeaea769c778aefee72427eeae8f3e953c0f327d --- keystoneauth1/loading/cli.py | 2 +- keystoneauth1/loading/conf.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/keystoneauth1/loading/cli.py b/keystoneauth1/loading/cli.py index 13a82301..9b04c77a 100644 --- a/keystoneauth1/loading/cli.py +++ b/keystoneauth1/loading/cli.py @@ -56,7 +56,7 @@ def register_argparse_arguments(parser, argv, default=None): '--os-auth-plugin', metavar='', default=env_plugin, - help='The auth plugin to load') + help='Authentication type to use') options, _args = in_parser.parse_known_args(argv) diff --git a/keystoneauth1/loading/conf.py b/keystoneauth1/loading/conf.py index 4c16551c..9d060157 100644 --- a/keystoneauth1/loading/conf.py +++ b/keystoneauth1/loading/conf.py @@ -15,7 +15,7 @@ from keystoneauth1.loading import opts _AUTH_TYPE_OPT = opts.Opt('auth_type', deprecated=[opts.Opt('auth_plugin')], - help='Name of the plugin to load') + help='Authentication type to load') _section_help = 'Config Section from which to load plugin specific options' _AUTH_SECTION_OPT = opts.Opt('auth_section', help=_section_help)