From 50e1b568fb59aa6c94eb7bd24a238c00bb890557 Mon Sep 17 00:00:00 2001 From: Brendan Le Foll Date: Fri, 24 Jun 2016 14:21:55 +0100 Subject: [PATCH] pydocs: Fix sys.path for multi python because added python2 dir Signed-off-by: Brendan Le Foll --- src/python/python2/docs/conf.py.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/python2/docs/conf.py.in b/src/python/python2/docs/conf.py.in index 344abe1..fa662ff 100644 --- a/src/python/python2/docs/conf.py.in +++ b/src/python/python2/docs/conf.py.in @@ -19,7 +19,7 @@ import os # If extensions (or modules to document with autodoc) are in another directory, # 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. -sys.path.insert(0, "@CMAKE_BINARY_DIR@/src/python") +sys.path.insert(0, "@CMAKE_BINARY_DIR@/src/python/python2") # -- General configuration ------------------------------------------------