We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 348a4dd commit b04cc2eCopy full SHA for b04cc2e
src/sphinxnotes/snippet/utils/pdict.py
@@ -90,7 +90,12 @@ def load(self) -> None:
90
91
def dump(self):
92
"""Dump store to disk."""
93
- from sphinx.util import status_iterator
+ # sphinx.util.status_iterator alias has been deprecated since sphinx 6.1
94
+ # and will be removed in sphinx 8.0
95
+ try:
96
+ from sphinx.util.display import status_iterator
97
+ except ImportError:
98
+ from sphinx.util import status_iterator
99
100
# Makesure dir exists
101
if not path.exists(self.dirname):
0 commit comments