diff options
author | Georg Brandl <georg@python.org> | 2008-02-09 23:09:25 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-02-09 23:09:25 (GMT) |
commit | 14a1b8cc469375577ea42152bfe559fa52d6ece7 (patch) | |
tree | 74cd626793db6337c25ed602cd936d14b43cc544 /Doc/conf.py | |
parent | 3abc6d6cb3cf00a25b30df5f231dc7df80bea406 (diff) | |
download | cpython-14a1b8cc469375577ea42152bfe559fa52d6ece7.zip cpython-14a1b8cc469375577ea42152bfe559fa52d6ece7.tar.gz cpython-14a1b8cc469375577ea42152bfe559fa52d6ece7.tar.bz2 |
Fix for newest doctools.
Diffstat (limited to 'Doc/conf.py')
-rw-r--r-- | Doc/conf.py | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/Doc/conf.py b/Doc/conf.py index 4cd0086..e198950 100644 --- a/Doc/conf.py +++ b/Doc/conf.py @@ -38,16 +38,16 @@ today = '' today_fmt = '%B %d, %Y' # List of files that shouldn't be included in the build. -unused_files = [ - 'whatsnew/2.0.rst', - 'whatsnew/2.1.rst', - 'whatsnew/2.2.rst', - 'whatsnew/2.3.rst', - 'whatsnew/2.4.rst', - 'whatsnew/2.5.rst', - 'maclib/scrap.rst', - 'library/xmllib.rst', - 'library/xml.etree.rst', +unused_docs = [ + 'whatsnew/2.0', + 'whatsnew/2.1', + 'whatsnew/2.2', + 'whatsnew/2.3', + 'whatsnew/2.4', + 'whatsnew/2.5', + 'maclib/scrap', + 'library/xmllib', + 'library/xml.etree', ] # Relative filename of the reference count data file. |