summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2019-04-05 01:29:00 +0900
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2019-04-05 01:29:00 +0900
commit47bb98c275b1bf718b1966ea3f80156b538112f4 (patch)
tree418ffce15c23d9ab06abcf0e48f8f4a648663630
parentd34302a41514f82075dea8d1e6b1088f6e57768a (diff)
downloadsphinx-git-47bb98c275b1bf718b1966ea3f80156b538112f4.tar.gz
Fix deprecation warnings for sphinx.builder.htmlhelp is not shown
-rw-r--r--CHANGES1
-rw-r--r--sphinx/builders/htmlhelp.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index ef568431a..ef3de2cb5 100644
--- a/CHANGES
+++ b/CHANGES
@@ -20,6 +20,7 @@ Bugs fixed
* deprecation warnings are not emitted
- sphinx.application.CONFIG_FILENAME
+ - sphinx.builders.htmlhelp
- :confval:`viewcode_import`
* #6220, #6225: napoleon: AttributeError is raised for raised section having
diff --git a/sphinx/builders/htmlhelp.py b/sphinx/builders/htmlhelp.py
index 2e7e8f083..be365ef7e 100644
--- a/sphinx/builders/htmlhelp.py
+++ b/sphinx/builders/htmlhelp.py
@@ -24,7 +24,7 @@ if False:
from sphinx.application import Sphinx # NOQA
-deprecated_alias('sphinx.builders.devhelp',
+deprecated_alias('sphinx.builders.htmlhelp',
{
'chm_locales': chm_locales,
'chm_htmlescape': chm_htmlescape,