Fix bug in documentation configuration
sys.path was updated to fit the new file hirerarchy (one '../' removed)
This commit is contained in:
parent
b698eb7cfe
commit
bdd3c7c941
|
@ -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('../'))
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue