Fix bug in documentation configuration

sys.path was updated to fit the new file hirerarchy (one '../' removed)
This commit is contained in:
Sylvain Tricot 2019-11-29 15:45:55 +01:00
parent b698eb7cfe
commit bdd3c7c941
1 changed files with 2 additions and 2 deletions

View File

@ -18,8 +18,8 @@ import sys, os
# add these directories to sys.path here. If the directory is relative to the # 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. # 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('.'))
sys.path.insert(0, os.path.abspath('../../src')) 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/msspec'))
#sys.path.insert(0, os.path.abspath('../')) #sys.path.insert(0, os.path.abspath('../'))