summaryrefslogtreecommitdiff
path: root/repoze
diff options
context:
space:
mode:
Diffstat (limited to 'repoze')
-rw-r--r--repoze/bfg/urldispatch.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/repoze/bfg/urldispatch.py b/repoze/bfg/urldispatch.py
index 51b6f9f84..7a77fec5b 100644
--- a/repoze/bfg/urldispatch.py
+++ b/repoze/bfg/urldispatch.py
@@ -51,9 +51,6 @@ class RoutesMapper(object):
match = route.match(path)
if match is not None:
preds = route.predicates
- # NB: it is the intent that only 'match' be relied on
- # by built-in predicates. 'route' and 'mapper' may be
- # used by custom predicates.
info = {'match':match, 'route':route}
if preds and not all((p(info, request) for p in preds)):
continue