[Zope3-checkins] CVS: Zope3/src/zope/app/broken - broken.py:1.2

Philipp von Weitershausen philikon at philikon.de
Tue Mar 2 12:52:20 EST 2004


Update of /cvs-repository/Zope3/src/zope/app/broken
In directory cvs.zope.org:/tmp/cvs-serv28764/broken

Modified Files:
	broken.py 
Log Message:
Moved location-related code, incl. interfaces and tests, to a new
zope.app.location package.


=== Zope3/src/zope/app/broken/broken.py 1.1 => 1.2 ===
--- Zope3/src/zope/app/broken/broken.py:1.1	Wed Feb 25 07:31:49 2004
+++ Zope3/src/zope/app/broken/broken.py	Tue Mar  2 12:51:49 2004
@@ -19,7 +19,7 @@
 
 import ZODB.broken
 import zope.interface
-import zope.app.interfaces.location
+import zope.app.location.interfaces
 import zope.app.event.function
 
 class IBroken(zope.interface.Interface):
@@ -27,7 +27,7 @@
     """
 
 class Broken(ZODB.broken.Broken):
-    zope.interface.implements(IBroken, zope.app.interfaces.location.ILocation)
+    zope.interface.implements(IBroken, zope.app.location.interfaces.ILocation)
 
     def __parent__(self):
         return self.__Broken_state__.get('__parent__')




More information about the Zope3-Checkins mailing list