Message ID | 4b7de1b9a5b0eec8cb1803e59b0027092c43c126.1736941628.git.yann.dirson@vates.tech (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | trivial improvements to sphinx doc tooling | expand |
On 15/01/2025 12:01 pm, Yann Dirson wrote: > Signed-off-by: Yann Dirson <yann.dirson@vates.tech> > --- > docs/conf.py | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/docs/conf.py b/docs/conf.py > index 5d2e979449..84bec024e7 100644 > --- a/docs/conf.py > +++ b/docs/conf.py > @@ -21,6 +21,7 @@ > # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information > > import sphinx > +import sys > > project = u'Xen' > copyright = u'2019-%Y, The Xen development community' Oh, that's awkward. Older sphinx must have had sys in context, because it did work when I initially added that check. Any chance this can go up above the "Path setup" section, and drop the commented out line? ~Andrew
diff --git a/docs/conf.py b/docs/conf.py index 5d2e979449..84bec024e7 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -21,6 +21,7 @@ # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information import sphinx +import sys project = u'Xen' copyright = u'2019-%Y, The Xen development community'
Signed-off-by: Yann Dirson <yann.dirson@vates.tech> --- docs/conf.py | 1 + 1 file changed, 1 insertion(+)