From 93e5463c2c4f26d1bc06586fe91e2603d0417b25 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Wed, 25 Nov 2009 22:26:54 +0000 Subject: This isn't really an object event in the sense that it is sent to an object event listener. --- repoze/bfg/interfaces.py | 4 +--- 1 file changed, 1 insertion(+), 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") -- cgit v1.2.3