Mercurial > libervia-web
changeset 1606:e412712bef95
doc: fix path issue:
Doc task in Libervia Website was failing due to path issue. This patch fixes it.
author | Goffi <goffi@goffi.org> |
---|---|
date | Thu, 30 May 2024 23:52:02 +0200 |
parents | 9cde31a21a9b |
children | 64bfb6554131 |
files | doc/conf.py |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/doc/conf.py Wed May 15 17:40:55 2024 +0200 +++ b/doc/conf.py Thu May 30 23:52:02 2024 +0200 @@ -12,16 +12,16 @@ # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. # -# import os -# import sys -# sys.path.insert(0, os.path.abspath('.')) +import os +import sys +sys.path.insert(0, os.path.abspath('..')) from libervia.web import __version__ # -- Project information ----------------------------------------------------- project = u'Libervia Web' -copyright = u'2019-2023 Jérôme Poisson' +copyright = u'2019-2024 Jérôme Poisson' author = u'Jérôme Poisson' version = __version__