summaryrefslogtreecommitdiff
path: root/Doc/conf.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-09-30 22:51:30 +0200
committerGeorg Brandl <georg@python.org>2014-09-30 22:51:30 +0200
commit97e9ec688c7ea49c61c803f1c87b183e32b3661c (patch)
tree29c33fb8941b0a7f2c5053756af68c1c0aa22003 /Doc/conf.py
parent2b1a0a30c9468bcb855fb8b60faaedbf5495904b (diff)
downloadcpython-git-97e9ec688c7ea49c61c803f1c87b183e32b3661c.tar.gz
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.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/conf.py b/Doc/conf.py
index e1c0637f97..7546c51e89 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('.', '')