diff options
| author | Georg Brandl <georg@python.org> | 2010-01-06 15:48:39 +0100 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2010-01-06 15:48:39 +0100 |
| commit | d8ecadd172a7b6bb42540da4543301279846d521 (patch) | |
| tree | 0f9148fe0ec29595e684696ae45f9f2818598448 /doc/conf.py | |
| parent | 818b990fcd3fbcfddb5d8fb84e5f23ffc75ed1ed (diff) | |
| download | sphinx-d8ecadd172a7b6bb42540da4543301279846d521.tar.gz | |
Add new universal config value ``exclude_patterns``, with glob-style exclude patterns.
This makes the old ``unused_docs``, ``exclude_trees`` and ``exclude_dirnames`` obsolete.
Diffstat (limited to 'doc/conf.py')
| -rw-r--r-- | doc/conf.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/conf.py b/doc/conf.py index ce87c54e..feda5fd1 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -18,6 +18,8 @@ source_suffix = '.rst' # The master toctree document. master_doc = 'contents' +exclude_patterns = ['_build'] + # General substitutions. project = 'Sphinx' copyright = '2007-2010, Georg Brandl' |
