Skip to content

Commit

Permalink
Second fix of sys.path
Browse files Browse the repository at this point in the history
  • Loading branch information
styx0x6 committed Oct 20, 2024
1 parent 537812f commit 16ce856
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,9 @@
colvert_main_reldir ='../colvert'
colvert_core_reldir ='../core'

sys.path.insert(0,
os.path.abspath(colvert_docs_root_reldir),
os.path.abspath(colvert_main_reldir),
os.path.abspath(colvert_core_reldir))
sys.path.insert(0, os.path.abspath(colvert_docs_root_reldir))
sys.path.append(0, os.path.abspath(colvert_main_reldir))
sys.path.append(0, os.path.abspath(colvert_core_reldir))

# Directory name in colvert which acts as connectors repository
COLVERT_CONNECTORS_REPO_NAME = 'connectors'
Expand Down

0 comments on commit 16ce856

Please sign in to comment.