[Python-checkins] r65494 - doctools/branches/0.4.x/sphinx/builder.py
georg.brandl
python-checkins at python.org
Mon Aug 4 18:35:00 CEST 2008
Author: georg.brandl
Date: Mon Aug 4 18:34:59 2008
New Revision: 65494
Log:
Correctly use HTML file suffix in templates.
Modified:
doctools/branches/0.4.x/sphinx/builder.py
Modified: doctools/branches/0.4.x/sphinx/builder.py
==============================================================================
--- doctools/branches/0.4.x/sphinx/builder.py (original)
+++ doctools/branches/0.4.x/sphinx/builder.py Mon Aug 4 18:34:59 2008
@@ -380,7 +380,7 @@
docstitle = self.config.html_title,
shorttitle = self.config.html_short_title,
show_sphinx = self.config.html_show_sphinx,
- file_suffix = self.config.html_file_suffix,
+ file_suffix = self.out_suffix,
rellinks = rellinks,
builder = self.name,
parents = [],
More information about the Python-checkins
mailing list