[Zope-Checkins] CVS: Zope/lib/python/Products/ZCatalog - CatalogAwarenessInterface.py:1.4

Jim Fulton jim@zope.com
Mon, 29 Jul 2002 09:23:05 -0400


Update of /cvs-repository/Zope/lib/python/Products/ZCatalog
In directory cvs.zope.org:/tmp/cvs-serv12330

Modified Files:
	CatalogAwarenessInterface.py 
Log Message:
Fixed some silly bugs that make no difference, since this module is
never imported. The doc strings should still be converted to standard
format.


=== Zope/lib/python/Products/ZCatalog/CatalogAwarenessInterface.py 1.3 => 1.4 ===
-from Zope.Interfaces.Interface import Interface
+from Interface import Interface
 
-class CatalogAware:
+class CatalogAware(Interface):
     """
     Description of the Item interface
     """
@@ -47,13 +47,3 @@
         object to try and reindex.
 
         """
-            
-
-CatalogAwareInterface=Interface(CatalogAware) # create the interface object
-
-
-
-
-
-
-