summaryrefslogtreecommitdiffstats
path: root/keystone/auth
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-04-23 18:07:22 +0000
committerGerrit Code Review <review@openstack.org>2013-04-23 18:07:22 +0000
commiteefc8e047392c80388391a5d1ae815e93df10849 (patch)
tree2b47147bc7d62b5d36fbbf50058f444730b4e58a /keystone/auth
parent4960ce161ce29601957b43eb45f15ced3ecbde0d (diff)
parent6f4096bc884339110eef719831bfa91d9b1d2e63 (diff)
downloadkeystone-eefc8e047392c80388391a5d1ae815e93df10849.tar.gz
keystone-eefc8e047392c80388391a5d1ae815e93df10849.tar.xz
keystone-eefc8e047392c80388391a5d1ae815e93df10849.zip
Merge "clean up invalid variable reference"
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 67a86442..0cb070bc 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]