diff --git a/django/template/debug.py b/django/template/debug.py index 7f2cbc585a..75efdf9824 100644 --- a/django/template/debug.py +++ b/django/template/debug.py @@ -9,9 +9,6 @@ from django.utils.timezone import template_localtime class DebugLexer(Lexer): - def __init__(self, template_string, origin): - super(DebugLexer, self).__init__(template_string, origin) - def tokenize(self): "Return a list of tokens from a given template_string" result, upto = [], 0