[CMF-checkins] CVS: Products/CMFCore - CMFCatalogAware.py:1.21.2.5

Julien Anguenot ja at nuxeo.com
Fri Apr 22 12:20:18 EDT 2005


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

Modified Files:
      Tag: CMF-1_5-branch
	CMFCatalogAware.py 
Log Message:
Trailing whitespaces


=== Products/CMFCore/CMFCatalogAware.py 1.21.2.4 => 1.21.2.5 ===
--- Products/CMFCore/CMFCatalogAware.py:1.21.2.4	Thu Apr 14 15:53:39 2005
+++ Products/CMFCore/CMFCatalogAware.py	Fri Apr 22 12:20:17 2005
@@ -120,7 +120,7 @@
             using something that is not an ObjectManager).
         """
         items = []
-        
+
         # Call 'talkback' knowing that it is an opaque item.
         # This will remain here as long as the discussion item does
         # not implement ICallableOpaqueItem (backwards compatibility).
@@ -128,17 +128,17 @@
             talkback = self.talkback
             if talkback is not None:
                 items.append((talkback.id, talkback))
-        
+
         # Other opaque items than 'talkback' may have callable
         # manage_after* and manage_before* hooks.
-        # Loop over all attributes and add those to 'items' 
+        # Loop over all attributes and add those to 'items'
         # implementing 'ICallableOpaqueItem'.
         self_base = aq_base(self)
         for name in self_base.__dict__.keys():
             obj = getattr(self_base, name)
             if ICallableOpaqueItem.isImplementedBy(obj):
                 items.append((obj.getId(), obj))
-        
+
         return tuple(items)
 
     security.declareProtected(AccessContentsInformation, 'opaqueIds')



More information about the CMF-checkins mailing list