Code

Swich to new indexer.
authorgmcm <gmcm@57a73879-2fb5-44c3-a270-3262357dd7e2>
Mon, 8 Jul 2002 16:02:19 +0000 (16:02 +0000)
committergmcm <gmcm@57a73879-2fb5-44c3-a270-3262357dd7e2>
Mon, 8 Jul 2002 16:02:19 +0000 (16:02 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@836 57a73879-2fb5-44c3-a270-3262357dd7e2

roundup/backends/back_metakit.py

index 962af890995b2e1666231b2da1beecf45eff2927..9d8d53f20badacd88c53a1b1406e7243cb0c9555 100755 (executable)
@@ -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