We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5723502 + 0dff978 commit 80ae2eeCopy full SHA for 80ae2ee
sphinxcontrib/confluencebuilder/env.py
@@ -210,6 +210,9 @@ def save_cache(self):
210
new_dochashs = dict(self._cached_dochash)
211
new_dochashs.update(self._active_dochash)
212
213
+ new_pids = dict(self._cached_pids)
214
+ new_pids.update(self._active_pids)
215
+
216
try:
217
with self._cache_cfg_file.open('w', encoding='utf-8') as f:
218
json.dump(new_cfg, f)
@@ -224,6 +227,6 @@ def save_cache(self):
224
227
225
228
226
229
with self._cache_publish_file.open('w', encoding='utf-8') as f:
- json.dump(self._active_pids, f)
230
+ json.dump(new_pids, f)
231
except OSError as e:
232
self.builder.warn('failed to save cache (pids): ' + e)
0 commit comments