diff options
Diffstat (limited to 'django/test/html.py')
| -rw-r--r-- | django/test/html.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/django/test/html.py b/django/test/html.py index 79331a098e..84f4862693 100644 --- a/django/test/html.py +++ b/django/test/html.py @@ -148,8 +148,10 @@ class RootElement(Element): class Parser(HTMLParser): - SELF_CLOSING_TAGS = ('br', 'hr', 'input', 'img', 'meta', 'spacer', - 'link', 'frame', 'base', 'col') + SELF_CLOSING_TAGS = ( + 'br', 'hr', 'input', 'img', 'meta', 'spacer', 'link', 'frame', 'base', + 'col', + ) def __init__(self): HTMLParser.__init__(self) |
