summaryrefslogtreecommitdiff
path: root/openstackclient/identity/v3/credential.py
diff options
context:
space:
mode:
Diffstat (limited to 'openstackclient/identity/v3/credential.py')
-rw-r--r--openstackclient/identity/v3/credential.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/openstackclient/identity/v3/credential.py b/openstackclient/identity/v3/credential.py
index b82825f0..93f67f6c 100644
--- a/openstackclient/identity/v3/credential.py
+++ b/openstackclient/identity/v3/credential.py
@@ -68,9 +68,9 @@ class CreateCredential(show.ShowOne):
else:
project = None
credential = identity_client.credentials.create(
- user_id,
- parsed_args.type,
- parsed_args.data,
+ user=user_id,
+ type=parsed_args.type,
+ blob=parsed_args.data,
project=project)
return zip(*sorted(six.iteritems(credential._info)))