diff options
| -rw-r--r-- | pyramid/config.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pyramid/config.py b/pyramid/config.py index 126111269..a12df8ef7 100644 --- a/pyramid/config.py +++ b/pyramid/config.py @@ -937,6 +937,11 @@ class Configurator(object): explicit=False) tweens.add(name, tween_factory, explicit) self.action(('tween', name, explicit), register) + + @action_method + def add_request_handler(self, factory, name): # pragma: no cover + # XXX bw compat for debugtoolbar + return self._add_tween(factory, explicit=False) @action_method def add_subscriber(self, subscriber, iface=None): |
