summaryrefslogtreecommitdiff
path: root/sphinx/builders/devhelp.py
diff options
context:
space:
mode:
Diffstat (limited to 'sphinx/builders/devhelp.py')
-rw-r--r--sphinx/builders/devhelp.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/sphinx/builders/devhelp.py b/sphinx/builders/devhelp.py
index 4f019b4a0..3e402690a 100644
--- a/sphinx/builders/devhelp.py
+++ b/sphinx/builders/devhelp.py
@@ -21,10 +21,12 @@ from sphinx.deprecation import RemovedInSphinx40Warning, deprecated_alias
deprecated_alias('sphinx.builders.devhelp',
{
- 'DevhelpBuilder': (
- 'sphinxcontrib.devhelp.DevhelpBuilder', DevhelpBuilder),
+ 'DevhelpBuilder': DevhelpBuilder,
},
- RemovedInSphinx40Warning)
+ RemovedInSphinx40Warning,
+ {
+ 'DevhelpBuilder': 'sphinxcontrib.devhelp.DevhelpBuilder'
+ })
def setup(app: Sphinx) -> Dict[str, Any]: