[Python-checkins] distutils2: fix the import search paths for sphinx (src is gone)
tarek.ziade
python-checkins at python.org
Tue Sep 21 10:32:07 CEST 2010
tarek.ziade pushed 57798d1a3c13 to distutils2:
http://hg.python.org/distutils2/rev/57798d1a3c13
changeset: 685:57798d1a3c13
tag: tip
user: Ronny Pfannschmidt <Ronny.Pfannschmidt at gmx.de>
date: Tue Sep 21 10:20:21 2010 +0200
summary: fix the import search paths for sphinx (src is gone)
files: docs/source/conf.py
diff --git a/docs/source/conf.py b/docs/source/conf.py
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -18,7 +18,7 @@
# 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(os.path.join(__file__, '..', '..', '..', 'src')))
+sys.path.append(os.path.abspath(os.path.join(__file__, '..', '..', '..')))
# -- General configuration -----------------------------------------------------
--
Repository URL: http://hg.python.org/distutils2
More information about the Python-checkins
mailing list