summaryrefslogtreecommitdiffstats
path: root/keystone/auth
diff options
context:
space:
mode:
authorBrant Knudson <bknudson@us.ibm.com>2013-04-08 19:53:15 -0500
committerBrant Knudson <bknudson@us.ibm.com>2013-04-08 19:53:15 -0500
commit6f4096bc884339110eef719831bfa91d9b1d2e63 (patch)
tree8c49fe5c5e9c2155fd97ed2324469ff1b0ff5336 /keystone/auth
parent89d35004411e1eec9b1af97f589f06ae871aca02 (diff)
downloadkeystone-6f4096bc884339110eef719831bfa91d9b1d2e63.tar.gz
keystone-6f4096bc884339110eef719831bfa91d9b1d2e63.tar.xz
keystone-6f4096bc884339110eef719831bfa91d9b1d2e63.zip
clean up invalid variable reference
keystone.auth.controllers.AuthInfo's get_method_data() referenced a variable that was not defined. Change-Id: I4171453d5e9843501052c9e395273976255342ad
Diffstat (limited to 'keystone/auth')
-rw-r--r--keystone/auth/controllers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/keystone/auth/controllers.py b/keystone/auth/controllers.py
index 113655db..479ec2cd 100644
--- a/keystone/auth/controllers.py
+++ b/keystone/auth/controllers.py
@@ -237,7 +237,7 @@ class AuthInfo(object):
"""
if method not in self.auth['identity']['methods']:
- raise exception.ValidationError(attribute=method_name,
+ raise exception.ValidationError(attribute=method,
target='identity')
return self.auth['identity'][method]