summaryrefslogtreecommitdiff
path: root/repoze/bfg/interfaces.py
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2008-07-04 17:50:59 +0000
committerChris McDonough <chrism@agendaless.com>2008-07-04 17:50:59 +0000
commit8b2c67309a9a3f9cf709bf3003dc3275f17c709e (patch)
tree1b20d5b000e4333cf50b2c2305dbb03e8b312144 /repoze/bfg/interfaces.py
parentd6cb3c1b68e752922a149d37a8d208b7d01dbe14 (diff)
downloadpyramid-8b2c67309a9a3f9cf709bf3003dc3275f17c709e.tar.gz
pyramid-8b2c67309a9a3f9cf709bf3003dc3275f17c709e.tar.bz2
pyramid-8b2c67309a9a3f9cf709bf3003dc3275f17c709e.zip
Don't depend on ZODB; shuffle policy responsibilities around a little.
Diffstat (limited to 'repoze/bfg/interfaces.py')
-rw-r--r--repoze/bfg/interfaces.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/repoze/bfg/interfaces.py b/repoze/bfg/interfaces.py
index 5e1a605ec..711ea44cc 100644
--- a/repoze/bfg/interfaces.py
+++ b/repoze/bfg/interfaces.py
@@ -5,6 +5,6 @@ class IWSGIApplication(Interface):
""" Represent a WSGI (PEP 333) application """
class IPolicy(Interface):
- def __call__(environ):
+ def __call__(root, environ):
""" Return a tuple in the form (context, name, subpath) """