Merge "Change auth plugin help text to auth type"

This commit is contained in:
Jenkins 2015-09-03 06:16:42 +00:00 committed by Gerrit Code Review
commit 49f3f60f8f
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)