diff options
Diffstat (limited to 'Docs/source/conf.py')
-rw-r--r-- | Docs/source/conf.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Docs/source/conf.py b/Docs/source/conf.py index 3d667ea26..572e803e3 100644 --- a/Docs/source/conf.py +++ b/Docs/source/conf.py @@ -17,9 +17,9 @@ # 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.join( os.path.abspath(__file__), '../Python') ) # -- General configuration ------------------------------------------------ @@ -40,7 +40,7 @@ extensions = ['sphinx.ext.autodoc', # Path to the Doxygen output breathe_default_project = "WarpX" -breathe_projects = { "myproject": "/home/me/docproj/doxyxml/" } +breathe_projects = { "WarpX": "../doxyxml" } # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] |