diff options
author | Georg Brandl <georg@python.org> | 2014-09-20 22:42:40 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-09-20 22:42:40 (GMT) |
commit | 3e46d7cba27f5636ba16c37651ba4ff6371e1a50 (patch) | |
tree | 7dbb7da8230662df1285a4eed96a5aa6618edc93 /Doc/conf.py | |
parent | 967d41fff1df58ba5ac64d161e3134a307a750ac (diff) | |
download | cpython-3e46d7cba27f5636ba16c37651ba4ff6371e1a50.zip cpython-3e46d7cba27f5636ba16c37651ba4ff6371e1a50.tar.gz cpython-3e46d7cba27f5636ba16c37651ba4ff6371e1a50.tar.bz2 |
Doc: fix usage of deprecated config value "unused_docs", and a duplicate object name.
Diffstat (limited to 'Doc/conf.py')
-rw-r--r-- | Doc/conf.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/conf.py b/Doc/conf.py index 5ed1140..c90ed59 100644 --- a/Doc/conf.py +++ b/Doc/conf.py @@ -40,10 +40,10 @@ today = '' today_fmt = '%B %d, %Y' # List of files that shouldn't be included in the build. -unused_docs = [ - 'maclib/scrap', - 'library/xmllib', - 'library/xml.etree', +exclude_patterns = [ + 'maclib/scrap.rst', + 'library/xmllib.rst', + 'library/xml.etree.rst', ] # Ignore .rst in Sphinx its self. |