summaryrefslogtreecommitdiffstats
path: root/Doc/conf.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-11-08 11:47:44 (GMT)
committerGeorg Brandl <georg@python.org>2008-11-08 11:47:44 (GMT)
commit012a1ff935949afe0c90f02fa824b14f7cbe232b (patch)
tree4b285a89a1bf91e75107b4f56a95be6c05dc2f2e /Doc/conf.py
parented29bb49f8c6305d00e589fb503f10d5aedd99a1 (diff)
downloadcpython-012a1ff935949afe0c90f02fa824b14f7cbe232b.zip
cpython-012a1ff935949afe0c90f02fa824b14f7cbe232b.tar.gz
cpython-012a1ff935949afe0c90f02fa824b14f7cbe232b.tar.bz2
Don't use "HOWTO" as the title for all howto .tex files.
Diffstat (limited to 'Doc/conf.py')
-rw-r--r--Doc/conf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/conf.py b/Doc/conf.py
index 38db324..bd0ea9f 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')