From 75841f22d39d90859c1157315c326b4e8a4a3b9c Mon Sep 17 00:00:00 2001 From: Todd Willey Date: Sun, 7 Nov 2010 17:18:41 -0500 Subject: Fix include paths so setup.py build_sphinx works again. --- doc/source/conf.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'doc/source') 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. -- cgit