diff options
author | Georg Brandl <georg@python.org> | 2013-01-03 10:36:53 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-01-03 10:36:53 +0100 |
commit | 847f12e63ba89c80a486cd0d71dbaaee8a5bdcaf (patch) | |
tree | 4200cd39d853389df3ee7669a7c27355d3dcbaf2 /sphinx/search | |
parent | 22b627af5259e70a24d8aa0fc7a1341d1b74b463 (diff) | |
download | sphinx-847f12e63ba89c80a486cd0d71dbaaee8a5bdcaf.tar.gz |
Fix loading the existing search index.
Diffstat (limited to 'sphinx/search')
-rw-r--r-- | sphinx/search/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/search/__init__.py b/sphinx/search/__init__.py index e28b5a6d..a4e306e3 100644 --- a/sphinx/search/__init__.py +++ b/sphinx/search/__init__.py @@ -197,7 +197,7 @@ class IndexBuilder(object): return rv self._mapping = load_terms(frozen['terms']) - self._title_mapping = load_terms(frozen['section_terms']) + self._title_mapping = load_terms(frozen['titleterms']) # no need to load keywords/objtypes def dump(self, stream, format): |