Skip to content
This repository has been archived by the owner on May 13, 2020. It is now read-only.

Commit

Permalink
The lexicon was getting wrapped before storing in ZODB. Fixed.
Browse files Browse the repository at this point in the history
ZODB works around this situation, but it probably shouldn't.
AdaptableStorage doesn't allow it.
  • Loading branch information
hathawsh committed Dec 16, 2002
1 parent d666635 commit 56594cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ZCTextIndex.py
Expand Up @@ -94,7 +94,7 @@ def __init__(self, id, extra=None, caller=None, index_factory=None,
else:
self._index_factory = index_factory

self.index = self._index_factory(self.getLexicon())
self.index = self._index_factory(aq_base(self.getLexicon()))

## Private Methods ##

Expand Down

0 comments on commit 56594cd

Please sign in to comment.