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 offers to specify buildir and datadir params (plus some others). Builddir param is optional (have default value ''). If you don't buildir but specify datadir, then files made during Sphinx build (pickles/ folder, files like environment.pickle or globalcontext.pickle) are not placed in specified <datadir> but in <current_work_dir>/data.
At sphinxcontrib.websupport in core.py:55 is introduced self.outdir
WebSupport class offers to specify
buildir
anddatadir
params (plus some others). Builddir param is optional (have default value ''). If you don'tbuildir
but specifydatadir
, then files made during Sphinx build (pickles/
folder, files likeenvironment.pickle
orglobalcontext.pickle
) are not placed in specified<datadir>
but in<current_work_dir>/data
.At sphinxcontrib.websupport in
core.py:55
is introducedself.outdir
that has only usage: it's passed to Sphinx constructor at
core.py:125
Proposed fix: IMHO
outdir
atcore.py:55
line should look like this:The text was updated successfully, but these errors were encountered: