Mercurial > p > roundup > code
diff roundup/backends/back_metakit.py @ 822:585a0140441a
Swich to new indexer.
| author | Gordon B. McMillan <gmcm@users.sourceforge.net> |
|---|---|
| date | Mon, 08 Jul 2002 16:02:19 +0000 |
| parents | d75ce81534db |
| children | 9a4aa0b107de |
line wrap: on
line diff
--- a/roundup/backends/back_metakit.py Mon Jul 08 15:32:06 2002 +0000 +++ b/roundup/backends/back_metakit.py Mon Jul 08 16:02:19 2002 +0000 @@ -1,7 +1,7 @@ from roundup import hyperdb, date, password, roundupdb import metakit import re, marshal, os, sys, weakref, time, calendar -from roundup.roundup_indexer import RoundupIndexer +from roundup.indexer import Indexer _instances = weakref.WeakValueDictionary() @@ -27,7 +27,7 @@ self.dirty = 0 self.__RW = 0 self._db = self.__open() - self.indexer = RoundupIndexer(self.config.DATABASE) + self.indexer = Indexer(self.config.DATABASE) os.umask(0002) # --- defined in ping's spec
