summaryrefslogtreecommitdiff
path: root/openstackclient
diff options
context:
space:
mode:
authorHugh Saunders <hugh@wherenow.org>2015-07-22 11:49:58 +0100
committerHugh Saunders <hugh@wherenow.org>2015-07-22 11:51:33 +0100
commit874c9212929204a6eb3c0dc70afd5ccea9794178 (patch)
treee43b0d28e377fd7cdc99f046fddbbb5ec640fa89 /openstackclient
parent317959d76eaaaf677811fe7c1f869874a69c7447 (diff)
downloadpython-openstackclient-874c9212929204a6eb3c0dc70afd5ccea9794178.tar.gz
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
Diffstat (limited to 'openstackclient')
-rw-r--r--openstackclient/identity/v3/unscoped_saml.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/openstackclient/identity/v3/unscoped_saml.py b/openstackclient/identity/v3/unscoped_saml.py
index 9b158b67..fddac68f 100644
--- a/openstackclient/identity/v3/unscoped_saml.py
+++ b/openstackclient/identity/v3/unscoped_saml.py
@@ -37,7 +37,7 @@ def auth_with_unscoped_saml(func):
else:
msg = ('This command requires the use of an unscoped SAML '
'authentication plugin. Please use argument '
- '--os-auth-plugin with one of the following '
+ '--os-auth-type with one of the following '
'plugins: ' + ', '.join(UNSCOPED_AUTH_PLUGINS))
raise exceptions.CommandError(msg)
return _decorated