diff options
| -rw-r--r-- | pyramid/router.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyramid/router.py b/pyramid/router.py index 248ab3b5b..746cf88cf 100644 --- a/pyramid/router.py +++ b/pyramid/router.py @@ -95,7 +95,7 @@ class Router(object): route.name, request.path_info, route.pattern, match, - route.predicates) + ', '.join([p.__text__ for p in route.predicates])) ) logger and logger.debug(msg) |
