Closes #1296: Fix invalid charset in HTML help generated HTML files for default locale.

This commit is contained in:
Georg Brandl
2013-10-20 19:13:37 +02:00
parent 424ca5c28a
commit ad920a46ff
2 changed files with 4 additions and 1 deletions

View File

@@ -19,6 +19,9 @@ Bugs fixed
* Restore ``versionmodified`` CSS class for versionadded/changed and deprecated
directives.
* #1296: Fix invalid charset in HTML help generated HTML files for default
locale.
Release 1.2 beta3 (released Oct 3, 2013)
========================================

View File

@@ -173,7 +173,7 @@ class HTMLHelpBuilder(StandaloneHTMLBuilder):
embedded = True
lcid = 0x409
encoding = 'iso8859_1'
encoding = 'cp1252'
def init(self):
StandaloneHTMLBuilder.init(self)