oops, missing a not here 25480a710422
authorsylvain.thenault@logilab.fr
Thu, 02 Apr 2009 17:12:25 +0200
branch25480a710422
changeset 1217 b5beb1946019
parent 1216 6ce1383b50ca
child 1218 680a8fe589a8
child 1817 8823d039ad4f
oops, missing a not here
server/repository.py
--- a/server/repository.py	Thu Apr 02 16:07:03 2009 +0200
+++ b/server/repository.py	Thu Apr 02 17:12:25 2009 +0200
@@ -145,7 +145,7 @@
         # querier helper, need to be created after sources initialization
         self.querier = QuerierHelper(self, self.schema)
         # should we reindex in changes?
-        self.do_fti = config['delay-full-text-indexation']
+        self.do_fti = not config['delay-full-text-indexation']
         # sources
         self.sources = []
         self.sources_by_uri = {}