diff options
author | Tim Graham <timograham@gmail.com> | 2016-12-05 14:00:10 -0500 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2016-12-05 14:47:44 -0500 |
commit | bacdfbf3d1eb23ff8e8110681728a5b467443446 (patch) | |
tree | d9bf60bb24c15ee829cfd6856e489ec9e74dd0b1 /docs/_ext/djangodocs.py | |
parent | b059ddf0660adf12a8bc0ea57fc0b9d1db9aed74 (diff) | |
download | django-bacdfbf3d1eb23ff8e8110681728a5b467443446.tar.gz |
Removed deprecated html_translator_class sphinx config option.
Diffstat (limited to 'docs/_ext/djangodocs.py')
-rw-r--r-- | docs/_ext/djangodocs.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/_ext/djangodocs.py b/docs/_ext/djangodocs.py index 8daca2bc6d..7d975f47c6 100644 --- a/docs/_ext/djangodocs.py +++ b/docs/_ext/djangodocs.py @@ -63,6 +63,7 @@ def setup(app): man=(visit_snippet_literal, depart_snippet_literal), text=(visit_snippet_literal, depart_snippet_literal), texinfo=(visit_snippet_literal, depart_snippet_literal)) + app.set_translator('djangohtml', DjangoHTMLTranslator) return {'parallel_read_safe': True} |