Update of /cvs-repository/Products/CMFCore
In directory cvs.zope.org:/tmp/cvs-serv20179/CMFCore

Modified Files:
      Tag: CMF-1_5-branch
        __init__.py 
Log Message:
 - Fix thinko.


=== Products/CMFCore/__init__.py 1.28.2.3 => 1.28.2.4 ===
--- Products/CMFCore/__init__.py:1.28.2.3       Tue Jul 12 22:31:01 2005
+++ Products/CMFCore/__init__.py        Tue Jul 12 22:48:12 2005
@@ -71,7 +71,7 @@
 
 _CONTENT_TYPES = ( PortalFolder.PortalFolder, )
 _EXTRA_CONSTRUCTORS = ( PortalFolder.manage_addPortalFolder, )
-_FTI = ( PortalFolder.factory_type_information, )
+_FTI = PortalFolder.factory_type_information
 
 
 # BBB / FFF:  We provide CMFBTreeFolder IFF the BTreeFolder2 product is
@@ -92,7 +92,7 @@
     import CMFBTreeFolder
     _CONTENT_TYPES += ( CMFBTreeFolder.CMFBTreeFolder, )
     _EXTRA_CONSTRUCTORS += ( CMFBTreeFolder.manage_addCMFBTreeFolder, )
-    _FTI += ( CMFBTreeFolder.factory_type_information, )
+    _FTI += CMFBTreeFolder.factory_type_information
 
 def initialize(context):
 

_______________________________________________
CMF-checkins mailing list
[email protected]
http://mail.zope.org/mailman/listinfo/cmf-checkins

Reply via email to