[Zope-Checkins] CVS: Zope2 - UnTextIndex.py:1.45

Chris McDonough chrism@digicool.com
Thu, 22 Mar 2001 13:33:05 -0500 (EST)


Update of /cvs-repository/Zope2/lib/python/SearchIndex
In directory korak:/home/chrism/sandboxes/TrunkBranch/lib/python/SearchIndex

Modified Files:
	UnTextIndex.py 
Log Message:
Merge from branch to fix parens matching.



--- Updated File UnTextIndex.py in package Zope2 --
--- UnTextIndex.py	2001/03/22 07:05:20	1.44
+++ UnTextIndex.py	2001/03/22 18:33:05	1.45
@@ -590,7 +590,7 @@
         elif operandType is StringType:
             left = self[left]        
         elif operandType is ListType:
-            left = evaluate(left, self)
+            left = self.evaluate(left)
 
         operandType = type(right)
         if operandType is IntType:
@@ -598,7 +598,7 @@
         elif operandType is StringType:
             right = self[right]       
         elif operandType is ListType:
-            right = evaluate(right, self)
+            right = self.evaluate(right)
 
         return (left, right)