summaryrefslogtreecommitdiff
path: root/django/template/exceptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/template/exceptions.py')
-rw-r--r--django/template/exceptions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/template/exceptions.py b/django/template/exceptions.py
index 08650fb97d..38980549f9 100644
--- a/django/template/exceptions.py
+++ b/django/template/exceptions.py
@@ -33,7 +33,7 @@ class TemplateDoesNotExist(Exception):
if chain is None:
chain = []
self.chain = chain
- super(TemplateDoesNotExist, self).__init__(msg)
+ super().__init__(msg)
class TemplateSyntaxError(Exception):