summaryrefslogtreecommitdiffstats
path: root/keystone/policy
diff options
context:
space:
mode:
authorDolph Mathews <dolph.mathews@gmail.com>2012-12-10 10:10:22 -0600
committerDolph Mathews <dolph.mathews@gmail.com>2012-12-12 15:13:36 -0600
commit8e2a183992311fe005abbfaa40d68dd7ce1fffd3 (patch)
treefbc5144e1c53bf807432a4aa1dc5906e81862069 /keystone/policy
parent4e2be8a8880f03b1c6d1dc663d7259dbb45ddf67 (diff)
downloadkeystone-8e2a183992311fe005abbfaa40d68dd7ce1fffd3.tar.gz
keystone-8e2a183992311fe005abbfaa40d68dd7ce1fffd3.tar.xz
keystone-8e2a183992311fe005abbfaa40d68dd7ce1fffd3.zip
Test drivers return HTTP 501 Not Implemented
Change-Id: I4cd21022593e6b4c3965edd00ecea01a00584516
Diffstat (limited to 'keystone/policy')
-rw-r--r--keystone/policy/core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/keystone/policy/core.py b/keystone/policy/core.py
index 447e11e3..a8d01f2f 100644
--- a/keystone/policy/core.py
+++ b/keystone/policy/core.py
@@ -58,7 +58,7 @@ class Manager(manager.Manager):
class Driver(object):
- def enforce(context, credentials, action, target):
+ def enforce(self, context, credentials, action, target):
"""Verify that a user is authorized to perform action.
For more information on a full implementation of this see: