diff options
Diffstat (limited to 'repoze/bfg/router.py')
| -rw-r--r-- | repoze/bfg/router.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/repoze/bfg/router.py b/repoze/bfg/router.py index e9e0f175a..9dd590fc0 100644 --- a/repoze/bfg/router.py +++ b/repoze/bfg/router.py @@ -58,7 +58,8 @@ def make_app(root_policy, package=None, filename='configure.zcml'): application. 'root_policy' must be a callable that accepts an environ and returns a graph root object. 'package' is the dotted-Python-path packagename of the application, 'filename' is - the ZCML file that should be parsed to create the view registry.""" + the ZCML file (relative to the package path) that should be parsed + to create the view registry.""" from repoze.bfg.registry import makeRegistry registry = makeRegistry(filename, package) return Router(root_policy, registry) |
