Skip to content

Commit

Permalink
Fixed bad import path
Browse files Browse the repository at this point in the history
  • Loading branch information
Drew J. Sonne committed Jun 25, 2017
1 parent 81f5042 commit dc91044
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
# Let us pull the verison from build.py
import sys, os
import sphinx_rtd_theme
sys.path.insert(0, './src/main/python')

sys.path.insert(0, os.path.abspath('../src/main/python'))

_version = ('1','1','10')
_version = ('1', '1', '10')

# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
Expand Down Expand Up @@ -255,5 +255,3 @@

html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
html_theme = 'sphinx_rtd_theme'

rst_prolog = '.. |package_version| replace:: {0}'.format(release)

0 comments on commit dc91044

Please sign in to comment.