summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2008-07-22 06:43:05 +0000
committerChris McDonough <chrism@agendaless.com>2008-07-22 06:43:05 +0000
commitb584143b2c408b979c340939f48b8a4ffe725e62 (patch)
treee915af77df1550ca20f7a846f7ca568955c015c4
parent281a7a8661f00e7a5ff61f3a8eda5cbe92665421 (diff)
downloadpyramid-b584143b2c408b979c340939f48b8a4ffe725e62.tar.gz
pyramid-b584143b2c408b979c340939f48b8a4ffe725e62.tar.bz2
pyramid-b584143b2c408b979c340939f48b8a4ffe725e62.zip
Fix interface.
-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 fee7b8d61..a239793ed 100644
--- a/repoze/bfg/interfaces.py
+++ b/repoze/bfg/interfaces.py
@@ -18,7 +18,7 @@ class IRootPolicy(Interface):
""" Return a root object """
class ITraverser(Interface):
- def __call__(path):
+ def __call__(environ):
""" Return a tuple in the form (context, name, subpath), typically
the result of an object graph traversal """