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

Fix typos in help messages for the 'share security service create'
command.

Change-Id: I621a02166af0956a610c8306859d60a056789c3c
This commit is contained in:
Maari Tamm 2022-08-01 13:01:34 +00:00
parent 2c3d29313c
commit 51154c443f

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',