[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/OFS/Content/Image - Image.py:1.1.2.3

Casey Duncan casey@zope.com
Fri, 29 Mar 2002 09:45:40 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Content/Image
In directory cvs.zope.org:/tmp/cvs-serv14614/Image

Modified Files:
      Tag: Zope-3x-branch
	Image.py 
Log Message:
Updated implementations to use mementos


=== Zope3/lib/python/Zope/App/OFS/Content/Image/Image.py 1.1.2.2 => 1.1.2.3 ===
 
 from Zope.App.OFS.Content.File.File import IFile, File
-from Zope.App.Security.IAttributeRolePermissionManageable \
-     import IAttributeRolePermissionManageable
+from Zope.App.OFS.Memento.IAttributeMementoStorable \
+     import IAttributeMementoStorable
 
 
 class IImage(IFile):
@@ -38,7 +38,7 @@
 
     __implements__ = (
         IImage,
-        IAttributeRolePermissionManageable
+        IAttributeMementoStorable,
         )
 
     def __init__(self, data=None):