Skip to content

Commit

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

sys.path.insert(0, os.path.abspath(colvert_docs_root_reldir, colvert_main_reldir, colvert_core_reldir))
sys.path.insert(0,
os.path.abspath(colvert_docs_root_reldir),
os.path.abspath(colvert_main_reldir),
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 537812f

Please sign in to comment.