Commit 1983f322 authored by Shane Hathaway's avatar Shane Hathaway

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

ZODB works around this situation, but it probably shouldn't.
AdaptableStorage doesn't allow it.
parent c81a1cb9
......@@ -94,7 +94,7 @@ class ZCTextIndex(Persistent, Acquisition.Implicit, SimpleItem):
else:
self._index_factory = index_factory
self.index = self._index_factory(self.getLexicon())
self.index = self._index_factory(aq_base(self.getLexicon()))
## Private Methods ##
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment