summaryrefslogtreecommitdiffstats
path: root/doc/source
diff options
context:
space:
mode:
authorTodd Willey <todd@ansolabs.com>2010-11-07 17:18:41 -0500
committerTodd Willey <todd@ansolabs.com>2010-11-07 17:18:41 -0500
commit75841f22d39d90859c1157315c326b4e8a4a3b9c (patch)
treefa1f65b0ec68469ea50d79791ca78a370f9b7411 /doc/source
parent7a501be599e79b79c8a73a9969aa7ba14212bda0 (diff)
Fix include paths so setup.py build_sphinx works again.
Diffstat (limited to 'doc/source')
-rw-r--r--doc/source/conf.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py
index 177c6568e..f59a58cdc 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -17,14 +17,15 @@ import sys, os
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
sys.path.insert(0, os.path.abspath('../../'))
-sys.path.insert(0, '../')
-sys.path.insert(0, './')
+sys.path.insert(0, os.path.abspath('../'))
+sys.path.insert(0, os.path.abspath('./'))
# -- General configuration -----------------------------------------------------
# Add any Sphinx extension module names here, as strings. They can be extensions
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.intersphinx', 'ext.nova_todo', 'sphinx.ext.coverage', 'sphinx.ext.pngmath', 'sphinx.ext.ifconfig']
+#extensions = ['sphinx.ext.autodoc', 'sphinx.ext.intersphinx', 'sphinx.ext.coverage', 'sphinx.ext.pngmath', 'sphinx.ext.ifconfig']
todo_include_todos = True
# Add any paths that contain templates here, relative to this directory.