Fix read-the-docs doc building

Read-the-docs requires the application module to be available via the
PYTHONPATH to build correctly as it does not install a virtualenv and
configuring it to do so results in it failing to find the custom
readthedocs sphinx builder.

Change-Id: Ic4a650fdbc8db1c8aeb7027121b3e0340d39b686
This commit is contained in:
Darragh Bailey 2016-11-11 12:54:58 +00:00
parent bbf251148c
commit e3867dcea4
1 changed files with 1 additions and 0 deletions

View File

@ -19,6 +19,7 @@ import sys, os
#sys.path.insert(0, os.path.abspath('.'))
sys.path.insert(0, os.path.abspath('.'))
sys.path.insert(0, os.path.abspath('../../')) # for git_upstream import
sys.path.insert(0, os.path.abspath('../../git_upstream')) # for indices
# -- General configuration -----------------------------------------------------