diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2016-08-30 20:50:14 -0700 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2016-08-30 20:50:14 -0700 |
commit | 32834dd67d20f2a58514bc9b9cd511e1a78d431e (patch) | |
tree | 01bdce1ec6064833a62448d23f8ed35afc21e5e7 /lib | |
parent | 05545a2528c5187d23329d3c691e66949e7d95b5 (diff) | |
download | spack-32834dd67d20f2a58514bc9b9cd511e1a78d431e.tar.gz spack-32834dd67d20f2a58514bc9b9cd511e1a78d431e.tar.bz2 spack-32834dd67d20f2a58514bc9b9cd511e1a78d431e.tar.xz spack-32834dd67d20f2a58514bc9b9cd511e1a78d431e.zip |
fix sys.path in conf.py
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/docs/conf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/docs/conf.py b/lib/spack/docs/conf.py index de84d0e5c8..06a2523ca2 100644 --- a/lib/spack/docs/conf.py +++ b/lib/spack/docs/conf.py @@ -50,7 +50,7 @@ from glob import glob # documentation root, use os.path.abspath to make it absolute, like shown here. sys.path.insert(0, os.path.abspath('exts')) sys.path.insert(0, os.path.abspath('../external')) -sys.path.append(os.path.abspath('../spack')) +sys.path.append(os.path.abspath('..')) # Add the Spack bin directory to the path so that we can use its output in docs. spack_root = '../../..' |