diff options
author | bnewbold <bnewbold@robocracy.org> | 2014-08-27 23:23:28 -0400 |
---|---|---|
committer | bnewbold <bnewbold@robocracy.org> | 2014-08-28 00:03:13 -0400 |
commit | 84fb63e479685ef5b63612237289f86106a46a97 (patch) | |
tree | 7036605972ae3718188a9d31850f4639d8472e94 /docs/source/conf.py | |
parent | 6702e7412828729c7a5df776d014f25deabf2274 (diff) | |
download | librambutan-84fb63e479685ef5b63612237289f86106a46a97.tar.gz librambutan-84fb63e479685ef5b63612237289f86106a46a97.zip |
docs: give local breath priority over system's
If the 'breath' python package (for doxygen => sphinx bridging) is
installed system-wide, builds would fail because the system version had
priority.
Diffstat (limited to 'docs/source/conf.py')
-rw-r--r-- | docs/source/conf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/source/conf.py b/docs/source/conf.py index 2abf0f7..1a4505e 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -22,7 +22,7 @@ import os.path # We rely on Michael Jones's breathe as a Doxygen-to-Sphinx bridge. # See the README for information on obtaining it and letting Sphinx # know where it is. -sys.path.append(os.environ['BREATHE_HOME']) +sys.path.insert(0, os.environ['BREATHE_HOME']) # -- General configuration ---------------------------------------------------- |