summaryrefslogtreecommitdiffstats
path: root/keystone/auth
diff options
context:
space:
mode:
authorDolph Mathews <dolph.mathews@gmail.com>2013-05-23 09:39:20 -0500
committerDolph Mathews <dolph.mathews@gmail.com>2013-05-23 09:39:32 -0500
commit29f2655af2372023788cc5a88ed3de7db1d6f010 (patch)
treeb17f3c8201fa6d88a5afa493e883ef4fdeefdbc6 /keystone/auth
parentb05ebb87805de478b8d264b5636cc0d22d0a7946 (diff)
downloadkeystone-29f2655af2372023788cc5a88ed3de7db1d6f010.tar.gz
keystone-29f2655af2372023788cc5a88ed3de7db1d6f010.tar.xz
keystone-29f2655af2372023788cc5a88ed3de7db1d6f010.zip
Remove unused variables (flake8 F841)
Change-Id: I716a6b61c2b3faaa23cc79f58c6c6e01cfc232f2
Diffstat (limited to 'keystone/auth')
-rw-r--r--keystone/auth/plugins/password.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/keystone/auth/plugins/password.py b/keystone/auth/plugins/password.py
index 9d924059..d5043611 100644
--- a/keystone/auth/plugins/password.py
+++ b/keystone/auth/plugins/password.py
@@ -109,7 +109,7 @@ class Password(auth.AuthMethodHandler):
# FIXME: identity.authenticate() can use some refactoring since
# all we care is password matches
- user_auth_data = self.identity_api.authenticate(
+ self.identity_api.authenticate(
context=context,
user_id=user_info.user_id,
password=user_info.password)