Skip to content

Commit

Permalink
Merge pull request biolab#2455 from kernc/fix-rtfd
Browse files Browse the repository at this point in the history
DOC: fix RTFD via append instead of inserting project root to sys.path
  • Loading branch information
astaric authored Jul 7, 2017
2 parents 7a2fbcd + 0398556 commit 5b22076
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/data-mining-library/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# 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.append(os.path.abspath('../../..'))

# -- General configuration ------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion doc/development/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# 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.append(os.path.abspath('../../..'))

# -- General configuration ------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion doc/visual-programming/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# 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.append(os.path.abspath('../../..'))
sys.path.append(os.path.abspath('.'))

# -- General configuration ------------------------------------------------
Expand Down

0 comments on commit 5b22076

Please sign in to comment.