Merge "[OSC] Fix typos in help messages for security services command"

This commit is contained in:
Zuul 2022-08-01 16:59:40 +00:00 committed by Gerrit Code Review
commit bf8d4dd162
1 changed files with 3 additions and 2 deletions

View File

@ -34,14 +34,15 @@ class CreateShareSecurityService(command.ShowOne):
metavar='<type>',
default=None,
choices=['ldap', 'kerberos', 'active_directory'],
help=_("Security service type. Possible options are:"
help=_("Security service type. Possible options are: "
"'ldap', 'kerberos', 'active_directory'.")
)
parser.add_argument(
'--dns-ip',
metavar='<dns-ip>',
default=None,
help=_("DNS IP address used inside project's network.")
help=_("DNS IP address of the security service used "
"inside project's network.")
)
parser.add_argument(
'--ou',