[Python-checkins] r67157 - python/trunk/Doc/conf.py
georg.brandl
python-checkins at python.org
Sat Nov 8 12:47:44 CET 2008
Author: georg.brandl
Date: Sat Nov 8 12:47:44 2008
New Revision: 67157
Log:
Don't use "HOWTO" as the title for all howto .tex files.
Modified:
python/trunk/Doc/conf.py
Modified: python/trunk/Doc/conf.py
==============================================================================
--- python/trunk/Doc/conf.py (original)
+++ python/trunk/Doc/conf.py Sat Nov 8 12:47:44 2008
@@ -128,7 +128,7 @@
]
# 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')
More information about the Python-checkins
mailing list