[Zope-Checkins] CVS: Zope/lib/python/Products/ZCTextIndex - ZCTextIndex.py:1.35.2.3

Shane Hathaway shane@zope.com
Mon, 16 Dec 2002 14:13:04 -0500


Update of /cvs-repository/Zope/lib/python/Products/ZCTextIndex
In directory cvs.zope.org:/tmp/cvs-serv24652

Modified Files:
      Tag: Zope-2_6-branch
	ZCTextIndex.py 
Log Message:
Merged patch from HEAD.

The lexicon was getting wrapped before storing in ZODB.  Fixed.


=== Zope/lib/python/Products/ZCTextIndex/ZCTextIndex.py 1.35.2.2 => 1.35.2.3 ===
--- Zope/lib/python/Products/ZCTextIndex/ZCTextIndex.py:1.35.2.2	Tue Dec 10 13:54:00 2002
+++ Zope/lib/python/Products/ZCTextIndex/ZCTextIndex.py	Mon Dec 16 14:13:04 2002
@@ -94,7 +94,7 @@
         else:
             self._index_factory = index_factory
 
-        self.index = self._index_factory(self.getLexicon())
+        self.index = self._index_factory(aq_base(self.getLexicon()))
 
     ## Private Methods ##