From bdd3c7c9414d56ef9fab2bee6b5468f75c5a2582 Mon Sep 17 00:00:00 2001 From: Sylvain Tricot Date: Fri, 29 Nov 2019 15:45:55 +0100 Subject: [PATCH] Fix bug in documentation configuration sys.path was updated to fit the new file hirerarchy (one '../' removed) --- doc/source/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index 783e4cb..d7672b0 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -18,8 +18,8 @@ import sys, os # 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, os.path.abspath('.')) -sys.path.insert(0, os.path.abspath('../../src')) -sys.path.insert(0, os.path.abspath('../../src/msspec')) +sys.path.insert(0, os.path.abspath('../src')) +sys.path.insert(0, os.path.abspath('../src/msspec')) #sys.path.insert(0, os.path.abspath('../'))