[Python-checkins] r62294 - python/trunk/Doc/conf.py

georg.brandl python-checkins at python.org
Sat Apr 12 20:11:18 CEST 2008


Author: georg.brandl
Date: Sat Apr 12 20:11:18 2008
New Revision: 62294

Log:
Use absolute path in sys.path.


Modified:
   python/trunk/Doc/conf.py

Modified: python/trunk/Doc/conf.py
==============================================================================
--- python/trunk/Doc/conf.py	(original)
+++ python/trunk/Doc/conf.py	Sat Apr 12 20:11:18 2008
@@ -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
 # ---------------------


More information about the Python-checkins mailing list