mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Closes #1296: Fix invalid charset in HTML help generated HTML files for default locale.
This commit is contained in:
3
CHANGES
3
CHANGES
@@ -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)
|
||||
========================================
|
||||
|
@@ -173,7 +173,7 @@ class HTMLHelpBuilder(StandaloneHTMLBuilder):
|
||||
embedded = True
|
||||
|
||||
lcid = 0x409
|
||||
encoding = 'iso8859_1'
|
||||
encoding = 'cp1252'
|
||||
|
||||
def init(self):
|
||||
StandaloneHTMLBuilder.init(self)
|
||||
|
Reference in New Issue
Block a user