diff options
Diffstat (limited to 'django/test/html.py')
| -rw-r--r-- | django/test/html.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/test/html.py b/django/test/html.py index b5ec00b16f..2c33731447 100644 --- a/django/test/html.py +++ b/django/test/html.py @@ -148,7 +148,7 @@ class Parser(HTMLParser): ) def __init__(self): - HTMLParser.__init__(self, convert_charrefs=False) + super().__init__(convert_charrefs=False) self.root = RootElement() self.open_tags = [] self.element_positions = {} |
