[Checkins] SVN: zc.listcontainer/trunk/src/zc/listcontainer/subscribers.py Take away all deprecations (except i18n:translate, where pertinent).

Gary Poster gary at zope.com
Fri Apr 28 20:23:15 EDT 2006


Log message for revision 67740:
  Take away all deprecations (except i18n:translate, where pertinent).
  

Changed:
  U   zc.listcontainer/trunk/src/zc/listcontainer/subscribers.py

-=-
Modified: zc.listcontainer/trunk/src/zc/listcontainer/subscribers.py
===================================================================
--- zc.listcontainer/trunk/src/zc/listcontainer/subscribers.py	2006-04-29 00:22:21 UTC (rev 67739)
+++ zc.listcontainer/trunk/src/zc/listcontainer/subscribers.py	2006-04-29 00:23:14 UTC (rev 67740)
@@ -1,10 +1,10 @@
 from zope import component
-import zope.app.event.interfaces
+import zope.lifecycleevent.interfaces
 
 from zc.listcontainer import interfaces
 
 @component.adapter(interfaces.IContained,
-                   zope.app.event.interfaces.IObjectCopiedEvent)
+                   zope.lifecycleevent.interfaces.IObjectCopiedEvent)
 def cleanCopy(new, ev):
     new.super = new.next = new.previous = None
 



More information about the Checkins mailing list