summaryrefslogtreecommitdiff
path: root/openstackclient/identity/v3/user.py
diff options
context:
space:
mode:
Diffstat (limited to 'openstackclient/identity/v3/user.py')
-rw-r--r--openstackclient/identity/v3/user.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/openstackclient/identity/v3/user.py b/openstackclient/identity/v3/user.py
index 060eeca7..a5209020 100644
--- a/openstackclient/identity/v3/user.py
+++ b/openstackclient/identity/v3/user.py
@@ -107,7 +107,7 @@ class CreateUser(show.ShowOne):
parsed_args.password = utils.get_password(self.app.stdin)
user = identity_client.users.create(
- parsed_args.name,
+ name=parsed_args.name,
domain=domain_id,
default_project=project_id,
password=parsed_args.password,