diff options
| author | Chris McDonough <chrism@agendaless.com> | 2008-07-22 06:43:05 +0000 |
|---|---|---|
| committer | Chris McDonough <chrism@agendaless.com> | 2008-07-22 06:43:05 +0000 |
| commit | b584143b2c408b979c340939f48b8a4ffe725e62 (patch) | |
| tree | e915af77df1550ca20f7a846f7ca568955c015c4 | |
| parent | 281a7a8661f00e7a5ff61f3a8eda5cbe92665421 (diff) | |
| download | pyramid-b584143b2c408b979c340939f48b8a4ffe725e62.tar.gz pyramid-b584143b2c408b979c340939f48b8a4ffe725e62.tar.bz2 pyramid-b584143b2c408b979c340939f48b8a4ffe725e62.zip | |
Fix interface.
| -rw-r--r-- | repoze/bfg/interfaces.py | 2 |
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 """ |
