From: gmcm Date: Mon, 8 Jul 2002 16:02:19 +0000 (+0000) Subject: Swich to new indexer. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=8793cc10d47fd0227fa25c4a5a05f1cc3ba7e5cf;p=roundup.git Swich to new indexer. git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@836 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/roundup/backends/back_metakit.py b/roundup/backends/back_metakit.py index 962af89..9d8d53f 100755 --- a/roundup/backends/back_metakit.py +++ b/roundup/backends/back_metakit.py @@ -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 @@ class _Database(hyperdb.Database): 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