From 012a1ff935949afe0c90f02fa824b14f7cbe232b Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 8 Nov 2008 11:47:44 +0000 Subject: [PATCH] Don't use "HOWTO" as the title for all howto .tex files. --- Doc/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/conf.py b/Doc/conf.py index 38db324379b..bd0ea9f64b5 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')