diff options
| author | Jenkins <jenkins@review.openstack.org> | 2013-07-23 15:26:29 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2013-07-23 15:26:29 +0000 |
| commit | e313afb9f0a59c9a060b996440c250ccc1728a03 (patch) | |
| tree | 72e2d8b16058c2a1f360e466f4d236051e20bb3c /openstackclient | |
| parent | f175d122473f0bf94abc694a30e3388597b35e26 (diff) | |
| parent | b4904b0a4a83db57e9ed70dad5ebefab85201e2f (diff) | |
| download | python-openstackclient-e313afb9f0a59c9a060b996440c250ccc1728a03.tar.gz | |
Merge "Add password field to set user"
Diffstat (limited to 'openstackclient')
| -rw-r--r-- | openstackclient/identity/v3/user.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/openstackclient/identity/v3/user.py b/openstackclient/identity/v3/user.py index aac70274..8ee535dc 100644 --- a/openstackclient/identity/v3/user.py +++ b/openstackclient/identity/v3/user.py @@ -311,6 +311,8 @@ class SetUser(command.Command): kwargs['name'] = parsed_args.name if parsed_args.email: kwargs['email'] = parsed_args.email + if parsed_args.password: + kwargs['password'] = parsed_args.password if parsed_args.description: kwargs['description'] = parsed_args.description if parsed_args.project: |
