diff options
| -rw-r--r-- | repoze/bfg/events.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/repoze/bfg/events.py b/repoze/bfg/events.py index 7dc8fc6e0..efcbdf61f 100644 --- a/repoze/bfg/events.py +++ b/repoze/bfg/events.py @@ -116,7 +116,6 @@ class NewResponse(object): self.response = response class ContextFound(object): - implements(IContextFound) """ An instance of this class is emitted as an :term:`event` after the :mod:`repoze.bfg` :term:`router` finds a :term:`context` object (after it performs traversal) but before any view code is @@ -135,6 +134,7 @@ class ContextFound(object): purposes, this event may also be imported as :class:`repoze.bfg.events.AfterTraversal`. """ + implements(IContextFound) def __init__(self, request): self.request = request |
