diff options
| author | Alasdair Nicol <alasdair@memset.com> | 2013-10-18 10:02:43 +0100 |
|---|---|---|
| committer | Alasdair Nicol <alasdair@memset.com> | 2013-10-18 10:07:39 +0100 |
| commit | a800036981c6fea8eb3dac22467965c71af05d29 (patch) | |
| tree | c872f8a78d26f1de133d415fef922013dafe878a /django/test/html.py | |
| parent | 65750b83523870851008e804364121f8c458fc2d (diff) | |
Fixed #21287 -- Fixed E123 pep8 warnings
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 0d30bd2d1c..35e9be9570 100644 --- a/django/test/html.py +++ b/django/test/html.py @@ -190,7 +190,7 @@ class Parser(HTMLParser): if name == "class" else (name, value) for name, value in attrs - ] + ] element = Element(tag, attrs) self.current.append(element) if tag not in self.SELF_CLOSING_TAGS: |
