summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2011-06-06 12:47:26 +0100
committerLars Wirzenius <liw@liw.fi>2011-06-06 12:47:26 +0100
commit301d298d7860976ad33cfc8f3fc702253b68a9ba (patch)
tree17c51dda51307b6d5686088f562814936049520c /doc
parent6c427b5ac8cdcb87124224178293ec51e748e27b (diff)
downloadlarch-301d298d7860976ad33cfc8f3fc702253b68a9ba.tar.gz
Fix version getting from larch.
Diffstat (limited to 'doc')
-rw-r--r--doc/conf.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/conf.py b/doc/conf.py
index b69d316..d395463 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -16,8 +16,8 @@ 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.append(os.path.abspath('.'))
-sys.path.append(os.path.abspath('..'))
+sys.path.insert(0, os.path.abspath('.'))
+sys.path.insert(0, os.path.abspath('..'))
# -- General configuration -----------------------------------------------------