[Zope-Checkins] SVN: Zope/trunk/lib/python/Products/ZCatalog/ZCatalog.py fix

Andreas Jung andreas at andreas-jung.com
Thu May 13 15:18:55 EDT 2004


Log message for revision 24633:
fix



-=-
Modified: Zope/trunk/lib/python/Products/ZCatalog/ZCatalog.py
===================================================================
--- Zope/trunk/lib/python/Products/ZCatalog/ZCatalog.py	2004-05-13 18:58:45 UTC (rev 24632)
+++ Zope/trunk/lib/python/Products/ZCatalog/ZCatalog.py	2004-05-13 19:18:54 UTC (rev 24633)
@@ -57,8 +57,6 @@
 
 
 class ZCatalog(Folder, Persistent, Implicit):
-    __implements__ = IZCatalog
-
     """ZCatalog object
 
     A ZCatalog contains arbirary index like references to Zope
@@ -75,9 +73,10 @@
     instance of the Catalog class.  An interesting feature of this
     class is that it is not Zope specific.  You can use it in any
     Python program to catalog objects.
-
     """
 
+    __implements__ = IZCatalog
+
     meta_type = "ZCatalog"
     icon='misc_/ZCatalog/ZCatalog.gif'
 




More information about the Zope-Checkins mailing list