# HG changeset patch # User Goffi # Date 1717105922 -7200 # Node ID e412712bef95bf07bbad50dba9e7689bf25e2475 # Parent 9cde31a21a9b3f32f98bdb8c03dcb3fcc7439abc doc: fix path issue: Doc task in Libervia Website was failing due to path issue. This patch fixes it. diff -r 9cde31a21a9b -r e412712bef95 doc/conf.py --- 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__