diff options
author | chillaranand <anand21nanda@gmail.com> | 2017-01-22 12:27:14 +0530 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2017-01-25 11:53:05 -0500 |
commit | dc165ec8e5698ffc6dee6b510f1f92c9fd7467fe (patch) | |
tree | ebcd5f708528b2aec195f9a97d28bd85653aa7dc /docs/_ext/djangodocs.py | |
parent | 2d96c027f5eb32c2c09bd57df2240ae1d343b98e (diff) | |
download | django-dc165ec8e5698ffc6dee6b510f1f92c9fd7467fe.tar.gz |
Refs #23919 -- Replaced super(ClassName, self) with super() in docs.
Diffstat (limited to 'docs/_ext/djangodocs.py')
-rw-r--r-- | docs/_ext/djangodocs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/_ext/djangodocs.py b/docs/_ext/djangodocs.py index a5d545f46b..d86568d6c7 100644 --- a/docs/_ext/djangodocs.py +++ b/docs/_ext/djangodocs.py @@ -307,7 +307,7 @@ class DjangoStandaloneHTMLBuilder(StandaloneHTMLBuilder): name = 'djangohtml' def finish(self): - super(DjangoStandaloneHTMLBuilder, self).finish() + super().finish() self.info(bold("writing templatebuiltins.js...")) xrefs = self.env.domaindata["std"]["objects"] templatebuiltins = { |