From: Georg Brandl Date: Sat, 8 Nov 2008 11:47:44 +0000 (+0000) Subject: Don't use "HOWTO" as the title for all howto .tex files. X-Git-Tag: v2.7a1~2673 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=012a1ff935949afe0c90f02fa824b14f7cbe232b;p=thirdparty%2FPython%2Fcpython.git Don't use "HOWTO" as the title for all howto .tex files. --- diff --git a/Doc/conf.py b/Doc/conf.py index 38db324379b5..bd0ea9f64b5c 100644 --- a/Doc/conf.py +++ b/Doc/conf.py @@ -128,7 +128,7 @@ latex_documents = [ ] # Collect all HOWTOs individually latex_documents.extend(('howto/' + fn[:-4], 'howto-' + fn[:-4] + '.tex', - 'HOWTO', _stdauthor, 'howto') + '', _stdauthor, 'howto') for fn in os.listdir('howto') if fn.endswith('.rst') and fn != 'index.rst')