diff options
| -rw-r--r-- | CHANGES.txt | 2 | ||||
| -rw-r--r-- | pyramid/config/routes.py | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 051328a02..6e73de823 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -21,6 +21,8 @@ Bug Fixes allowing traversal to continue. See https://github.com/Pylons/pyramid/issues/1104 +- Remove unused ``renderer`` argument from ``Configurator.add_route``. + Documentation ------------- diff --git a/pyramid/config/routes.py b/pyramid/config/routes.py index 9dca9e51e..4de4663a8 100644 --- a/pyramid/config/routes.py +++ b/pyramid/config/routes.py @@ -36,7 +36,6 @@ class RoutesConfiguratorMixin(object): request_param=None, traverse=None, custom_predicates=(), - renderer=None, use_global_views=False, path=None, pregenerator=None, |
