Use Windows-friendlier dirnames.

This commit is contained in:
Georg Brandl
2008-03-21 15:20:50 +00:00
parent 94a868db40
commit 5f78bc436b
6 changed files with 24 additions and 24 deletions

View File

@@ -24,7 +24,7 @@ sys.path.append(os.path.dirname(__file__))
extensions = ['ext', 'sphinx.ext.autodoc', 'sphinx.ext.doctest']
# Add any paths that contain templates here, relative to this directory.
templates_path = ['.templates']
templates_path = ['_templates']
# The suffix of source filenames.
source_suffix = '.rst'
@@ -77,7 +77,7 @@ html_style = 'sphinxdoc.css'
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['.static']
html_static_path = ['_static']
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
# using the given strftime format.