Updated Branches: refs/heads/trunk efc6e9923 -> 937e33a27
Put parent directory to the sys.path in the Sphinx config. Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/937e33a2 Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/937e33a2 Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/937e33a2 Branch: refs/heads/trunk Commit: 937e33a274cacd23ec5094826fc37d4be578deae Parents: efc6e99 Author: Tomaz Muraus <[email protected]> Authored: Sat Aug 3 15:40:28 2013 +0200 Committer: Tomaz Muraus <[email protected]> Committed: Sat Aug 3 15:40:28 2013 +0200 ---------------------------------------------------------------------- docs/Makefile | 2 -- docs/conf.py | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/937e33a2/docs/Makefile ---------------------------------------------------------------------- diff --git a/docs/Makefile b/docs/Makefile index 30695a5..3d1de36 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -7,8 +7,6 @@ SPHINXBUILD = sphinx-build PAPER = BUILDDIR = _build -export PYTHONPATH = $(shell echo "$$PYTHONPATH"):../ - # Internal variables. PAPEROPT_a4 = -D latex_paper_size=a4 PAPEROPT_letter = -D latex_paper_size=letter http://git-wip-us.apache.org/repos/asf/libcloud/blob/937e33a2/docs/conf.py ---------------------------------------------------------------------- diff --git a/docs/conf.py b/docs/conf.py index fd2ab34..3b03a61 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -16,7 +16,7 @@ import sys, os # If extensions (or modules to document with autodoc) are in another directory, # 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, os.path.abspath('../')) # -- General configuration -----------------------------------------------------
