diff options
author | Georg Brandl <georg@python.org> | 2009-02-19 16:15:36 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-02-19 16:15:36 +0100 |
commit | d4f5796f3bd754e9fbcd66c5656146d4ea747229 (patch) | |
tree | 8bed92737926f9545df8e5d67c0ed6345eb7ae3d /doc/conf.py | |
parent | 2dff2e3bfa291ed7dfdd75dae35b2932a0f89560 (diff) | |
download | sphinx-git-d4f5796f3bd754e9fbcd66c5656146d4ea747229.tar.gz |
The HTML builder now stores a small file named ``.buildinfo`` in
its output directory. It stores a hash of config values that
can be used to determine if a full rebuild needs to be done (e.g.
after changing ``html_theme``).
Diffstat (limited to 'doc/conf.py')
-rw-r--r-- | doc/conf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/conf.py b/doc/conf.py index e1a48aa20..a86f86489 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -31,7 +31,7 @@ release = version show_authors = True # The HTML template theme. -html_theme = 'sphinxdoc' +html_theme = 'default' # A list of ignored prefixes names for module index sorting. modindex_common_prefix = ['sphinx.'] |