Change auth plugin help text to auth type

Change-Id: Iaeaea769c778aefee72427eeae8f3e953c0f327d
This commit is contained in:
TerryHowe 2015-09-02 12:53:47 -06:00
parent a56ed4218a
commit 2e572f7138
2 changed files with 2 additions and 2 deletions

View File

@ -56,7 +56,7 @@ def register_argparse_arguments(parser, argv, default=None):
'--os-auth-plugin',
metavar='<name>',
default=env_plugin,
help='The auth plugin to load')
help='Authentication type to use')
options, _args = in_parser.parse_known_args(argv)

View File

@ -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)