summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-11-25 22:26:54 +0000
committerChris McDonough <chrism@agendaless.com>2009-11-25 22:26:54 +0000
commit93e5463c2c4f26d1bc06586fe91e2603d0417b25 (patch)
tree97eeb08fcd7128a266fc90dc47a45fc42a583141
parent914019a1f687c079c076af56174c8601eba0015b (diff)
downloadpyramid-93e5463c2c4f26d1bc06586fe91e2603d0417b25.tar.gz
pyramid-93e5463c2c4f26d1bc06586fe91e2603d0417b25.tar.bz2
pyramid-93e5463c2c4f26d1bc06586fe91e2603d0417b25.zip
This isn't really an object event in the sense that it is sent to an object event listener.
-rw-r--r--repoze/bfg/interfaces.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/repoze/bfg/interfaces.py b/repoze/bfg/interfaces.py
index 614acbb80..5ce6c3461 100644
--- a/repoze/bfg/interfaces.py
+++ b/repoze/bfg/interfaces.py
@@ -1,8 +1,6 @@
from zope.interface import Attribute
from zope.interface import Interface
-from zope.component.interfaces import IObjectEvent
-
class IRequest(Interface):
""" Request type interface attached to all request objects """
@@ -135,7 +133,7 @@ class ISettings(Interface):
""" Runtime settings utility for repoze.bfg; represents the
deployment settings for the application"""
-class IWSGIApplicationCreatedEvent(IObjectEvent):
+class IWSGIApplicationCreatedEvent(Interface):
""" Event issued after the application has been created and
configured."""
app = Attribute(u"Published application")