[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/OFS/Services/LocalEventService - LocalEventChannel.py:1.4

Gary Poster gary@modernsongs.com
Mon, 21 Oct 2002 02:22:40 -0400


Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Services/LocalEventService
In directory cvs.zope.org:/tmp/cvs-serv15041

Modified Files:
	LocalEventChannel.py 
Log Message:
fixed something I saw in the checkin emails :-)


=== Zope3/lib/python/Zope/App/OFS/Services/LocalEventService/LocalEventChannel.py 1.3 => 1.4 ===
--- Zope3/lib/python/Zope/App/OFS/Services/LocalEventService/LocalEventChannel.py:1.3	Mon Oct 21 02:14:45 2002
+++ Zope3/lib/python/Zope/App/OFS/Services/LocalEventService/LocalEventChannel.py	Mon Oct 21 02:22:40 2002
@@ -29,12 +29,10 @@
     # TypeError: multiple bases have instance lay-out conflict
     # when used in ProtoServiceEventChannel
     
-    __implements__ = (
-        IEventChannel,
-        LocalSubscribable.__implements__)
+    __implements__ = IEventChannel
     
-    # uses (and needs) __init__ from Zope.Event.Subscribable (via
-    # LocalSubscribable)
+    # needs __init__ from Zope.Event.Subscribable (via
+    # LocalSubscribable)!!
         
     def notify(wrapped_self, event):
         clean_self=removeAllProxies(wrapped_self)