summaryrefslogtreecommitdiff
path: root/sphinx/builders/devhelp.py
diff options
context:
space:
mode:
authorPeter Bell <peterbell10@live.co.uk>2020-07-16 15:48:51 +0100
committerPeter Bell <peterbell10@live.co.uk>2020-07-16 15:48:51 +0100
commit00002397764b391b0ebf737bbe47202ed4c98fff (patch)
tree1c4378850ab1461ac189e0690aceb88e59c44a04 /sphinx/builders/devhelp.py
parentea0fbd21d5e0c498cf13e338a1ed3dd64d15d4f3 (diff)
downloadsphinx-git-00002397764b391b0ebf737bbe47202ed4c98fff.tar.gz
Preserve backwards compatibility
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]: