summaryrefslogtreecommitdiffstats
path: root/Doc/conf.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-04-12 18:11:18 (GMT)
committerGeorg Brandl <georg@python.org>2008-04-12 18:11:18 (GMT)
commitb4d21139b77f9a43b01e3c43b22808050532d691 (patch)
treefbfff6d048a1d2d15554e39c65133a4dd19812f8 /Doc/conf.py
parent7a98d2730c42fc41fd28d622b46dd334e8a2a21d (diff)
downloadcpython-b4d21139b77f9a43b01e3c43b22808050532d691.zip
cpython-b4d21139b77f9a43b01e3c43b22808050532d691.tar.gz
cpython-b4d21139b77f9a43b01e3c43b22808050532d691.tar.bz2
Use absolute path in sys.path.
Diffstat (limited to 'Doc/conf.py')
-rw-r--r--Doc/conf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/conf.py b/Doc/conf.py
index 6a45242..6cf6433 100644
--- a/Doc/conf.py
+++ b/Doc/conf.py
@@ -8,7 +8,7 @@
# that aren't pickleable (module imports are okay, they're removed automatically).
import sys, os, time
-sys.path.append('tools/sphinxext')
+sys.path.append(os.path.abspath('tools/sphinxext'))
# General configuration
# ---------------------