From 29f2655af2372023788cc5a88ed3de7db1d6f010 Mon Sep 17 00:00:00 2001 From: Dolph Mathews Date: Thu, 23 May 2013 09:39:20 -0500 Subject: Remove unused variables (flake8 F841) Change-Id: I716a6b61c2b3faaa23cc79f58c6c6e01cfc232f2 --- keystone/auth/plugins/password.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'keystone/auth') 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) -- cgit