104
117
self._history = History.from_folder(self._config.get('folder'), self._name)
105
118
cache_path = self._config.get('cachepath', None)
106
122
if cache_path is not None:
107
123
self._history.use_cache(ChangeCache(self._history, cache_path))
108
124
self._history.use_search_index(TextIndex(self._history, cache_path))