diff options
| author | Chris McDonough <chrism@agendaless.com> | 2010-09-30 03:50:10 +0000 |
|---|---|---|
| committer | Chris McDonough <chrism@agendaless.com> | 2010-09-30 03:50:10 +0000 |
| commit | 6398976965c4c5f11c1069e23c26a564eb37e64b (patch) | |
| tree | 465a86a58c6f037d8a7970df8f30343b9e824ffb /repoze | |
| parent | 7a966c46b25441702556023b4dcdb8007e4e4049 (diff) | |
| download | pyramid-6398976965c4c5f11c1069e23c26a564eb37e64b.tar.gz pyramid-6398976965c4c5f11c1069e23c26a564eb37e64b.tar.bz2 pyramid-6398976965c4c5f11c1069e23c26a564eb37e64b.zip | |
rendering
Diffstat (limited to 'repoze')
| -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 |
