[Zope-Checkins] CVS: Zope/lib/python/Products/PluginIndexes/common - UnIndex.py:1.23

Casey Duncan casey at zope.com
Fri Apr 23 10:57:28 EDT 2004


Update of /cvs-repository/Zope/lib/python/Products/PluginIndexes/common
In directory cvs.zope.org:/tmp/cvs-serv27642/common

Modified Files:
	UnIndex.py 
Log Message:
Wrap lines > 80 chars


=== Zope/lib/python/Products/PluginIndexes/common/UnIndex.py 1.22 => 1.23 ===
--- Zope/lib/python/Products/PluginIndexes/common/UnIndex.py:1.22	Tue Apr 20 10:30:45 2004
+++ Zope/lib/python/Products/PluginIndexes/common/UnIndex.py	Fri Apr 23 10:57:28 2004
@@ -39,7 +39,8 @@
     """UnIndex object interface"""
 
 
-    def __init__(self, id, ignore_ex=None, call_methods=None, extra=None, caller=None):
+    def __init__(
+        self, id, ignore_ex=None, call_methods=None, extra=None, caller=None):
         """Create an unindex
 
         UnIndexes are indexes that contain two index components, the
@@ -88,7 +89,8 @@
         # allow index to index multiple attributes
         try: 
             self.indexed_attrs = extra.indexed_attrs.split(',')
-            self.indexed_attrs = [ attr.strip() for attr in  self.indexed_attrs if attr ]
+            self.indexed_attrs = [ 
+                attr.strip() for attr in  self.indexed_attrs if attr ]
             if len(self.indexed_attrs) == 0: self.indexed_attrs = [ self.id ]
         except:
             self.indexed_attrs = [ self.id ] 




More information about the Zope-Checkins mailing list