diff options
| author | Chris McDonough <chrism@agendaless.com> | 2010-09-12 12:52:54 +0000 |
|---|---|---|
| committer | Chris McDonough <chrism@agendaless.com> | 2010-09-12 12:52:54 +0000 |
| commit | 239a93313a3af9a29ab1e09e54ba970e369a11f2 (patch) | |
| tree | b5d3acc6412f905ccbd9334d3d4aefe3c824bc96 /repoze | |
| parent | 8cba7994ab5ddf9b4874b03fca68fddb666f3380 (diff) | |
| download | pyramid-239a93313a3af9a29ab1e09e54ba970e369a11f2.tar.gz pyramid-239a93313a3af9a29ab1e09e54ba970e369a11f2.tar.bz2 pyramid-239a93313a3af9a29ab1e09e54ba970e369a11f2.zip | |
put exception view in glossary
Diffstat (limited to 'repoze')
| -rw-r--r-- | repoze/bfg/interfaces.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/repoze/bfg/interfaces.py b/repoze/bfg/interfaces.py index 8730a5294..3f3794a53 100644 --- a/repoze/bfg/interfaces.py +++ b/repoze/bfg/interfaces.py @@ -40,9 +40,11 @@ class IApplicationCreated(Interface): .. note:: For backwards compatibility with :mod:`repoze.bfg` versions before 1.3, this interface can also be imported as - :class:`repoze.bfg.interfaces.IWSGIApplicationCreatedEvent. + :class:`repoze.bfg.interfaces.IWSGIApplicationCreatedEvent`. """ - app = Attribute(u"Published application") + app = Attribute(u"Created application") + +IWSGIApplicationCreatedEvent = IApplicationCreated # b /c class IFinishedRequest(Interface): """ @@ -55,8 +57,6 @@ class IFinishedRequest(Interface): """ request = Attribute('The request object') -IWSGIApplicationCreatedEvent = IApplicationCreated # b /c - class IResponse(Interface): # not an API status = Attribute('WSGI status code of response') headerlist = Attribute('List of response headers') |
