summaryrefslogtreecommitdiff
path: root/repoze
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2010-09-12 12:52:54 +0000
committerChris McDonough <chrism@agendaless.com>2010-09-12 12:52:54 +0000
commit239a93313a3af9a29ab1e09e54ba970e369a11f2 (patch)
treeb5d3acc6412f905ccbd9334d3d4aefe3c824bc96 /repoze
parent8cba7994ab5ddf9b4874b03fca68fddb666f3380 (diff)
downloadpyramid-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.py8
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')