Skip to content

Commit 874c921

Browse files
committed
Fix --os-auth-plugin in auth_with_unscoped_saml
The error message refers to --os-auth-plugin which is not a valid option. This patch changes that to --os-auth-type. Change-Id: I02ec0b7855131180bb8c674051930ebb51cb7303 Closes-Bug: #1477083
1 parent 317959d commit 874c921

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

openstackclient/identity/v3/unscoped_saml.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def _decorated(self, parsed_args):
3737
else:
3838
msg = ('This command requires the use of an unscoped SAML '
3939
'authentication plugin. Please use argument '
40-
'--os-auth-plugin with one of the following '
40+
'--os-auth-type with one of the following '
4141
'plugins: ' + ', '.join(UNSCOPED_AUTH_PLUGINS))
4242
raise exceptions.CommandError(msg)
4343
return _decorated

0 commit comments

Comments
 (0)