diff options
author | Georg Brandl <georg@python.org> | 2014-09-30 20:51:30 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-09-30 20:51:30 (GMT) |
commit | 97e9ec688c7ea49c61c803f1c87b183e32b3661c (patch) | |
tree | 29c33fb8941b0a7f2c5053756af68c1c0aa22003 /Doc/conf.py | |
parent | 2b1a0a30c9468bcb855fb8b60faaedbf5495904b (diff) | |
download | cpython-97e9ec688c7ea49c61c803f1c87b183e32b3661c.zip cpython-97e9ec688c7ea49c61c803f1c87b183e32b3661c.tar.gz cpython-97e9ec688c7ea49c61c803f1c87b183e32b3661c.tar.bz2 |
Move Doc/tools/sphinxext content to Doc/tools, there is no need for the nested subdirectory anymore.
Diffstat (limited to 'Doc/conf.py')
-rw-r--r-- | Doc/conf.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/conf.py b/Doc/conf.py index e1c0637..7546c51 100644 --- a/Doc/conf.py +++ b/Doc/conf.py @@ -7,14 +7,14 @@ # that aren't pickleable (module imports are okay, they're removed automatically). import sys, os, time -sys.path.append(os.path.abspath('tools/sphinxext')) +sys.path.append(os.path.abspath('tools')) # General configuration # --------------------- extensions = ['sphinx.ext.coverage', 'sphinx.ext.doctest', 'pyspecific', 'c_annotations'] -templates_path = ['tools/sphinxext'] +templates_path = ['tools'] # General substitutions. project = 'Python' @@ -96,7 +96,7 @@ html_additional_pages = { html_use_opensearch = 'http://docs.python.org/' + version # Additional static files. -html_static_path = ['tools/sphinxext/static'] +html_static_path = ['tools/static'] # Output file base name for HTML help builder. htmlhelp_basename = 'python' + release.replace('.', '') |