summaryrefslogtreecommitdiff
path: root/keystoneclient/v3/users.py
diff options
context:
space:
mode:
Diffstat (limited to 'keystoneclient/v3/users.py')
-rw-r--r--keystoneclient/v3/users.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/keystoneclient/v3/users.py b/keystoneclient/v3/users.py
index 2e20ede..35c42cc 100644
--- a/keystoneclient/v3/users.py
+++ b/keystoneclient/v3/users.py
@@ -156,7 +156,7 @@ class UserManager(base.CrudManager):
params = {'user': {'password': new_password,
'original_password': old_password}}
- base_url = '/users/%s/password' % self.api.user_id
+ base_url = '/users/%s/password' % self.client.user_id
return self._update(base_url, params, method='POST', log=False,
endpoint_filter={'interface': 'public'})