From: Georg Brandl Date: Sat, 12 Apr 2008 18:11:18 +0000 (+0000) Subject: Use absolute path in sys.path. X-Git-Tag: v2.6a3~216 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b4d21139b77f9a43b01e3c43b22808050532d691;p=thirdparty%2FPython%2Fcpython.git Use absolute path in sys.path. --- diff --git a/Doc/conf.py b/Doc/conf.py index 6a452420fe3a..6cf643353f84 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 # ---------------------