You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WebSupport class accepts doctreedir where .doctree files are placed. By default it should be <builddir>/doctrees/ where buildir is another WebSupport class parameter.
However I've noticed that doctreedir argument is ignored in the source code. Specifically in the sphinxcontrib.websupport.core.py:58 is this line
self.doctreedir = staticdir or path.join(self.builddir, 'doctrees')
I.e. doctrees are created under specified staticdir. It shoudl respect constructor parameter:
self.doctreedir = doctreedir or path.join(self.builddir, 'doctrees')
The text was updated successfully, but these errors were encountered:
WebSupport class accepts
doctreedir
where .doctree files are placed. By default it should be<builddir>/doctrees/
where buildir is another WebSupport class parameter.However I've noticed that
doctreedir
argument is ignored in the source code. Specifically in the sphinxcontrib.websupport.core.py:58 is this lineI.e. doctrees are created under specified staticdir. It shoudl respect constructor parameter:
The text was updated successfully, but these errors were encountered: