Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Fix build with sphinx 5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
antonio-rojas committed Sep 29, 2022
1 parent 4541564 commit c2e610c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/sage_docbuild/ext/multidocs.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,10 @@ def merge_js_index(app):
titles = app.builder.indexer._titles
for (res, title) in index._titles.items():
titles[fixpath(res)] = title
# merge the alltitles
alltitles = app.builder.indexer._all_titles
for (res, alltitle) in index._all_titles.items():
alltitles[fixpath(res)] = alltitle
# merge the filenames
filenames = app.builder.indexer._filenames
for (res, filename) in index._filenames.items():
Expand Down

0 comments on commit c2e610c

Please sign in to comment.