summaryrefslogtreecommitdiff
path: root/src/lxml/html/diff.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/lxml/html/diff.py')
-rw-r--r--src/lxml/html/diff.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lxml/html/diff.py b/src/lxml/html/diff.py
index bfb6d197..6ef2371e 100644
--- a/src/lxml/html/diff.py
+++ b/src/lxml/html/diff.py
@@ -703,7 +703,7 @@ def start_tag(el):
"""
return '<%s%s>' % (
el.tag, ''.join([' %s="%s"' % (name, cgi.escape(value, True))
- for name, value in el.attrib.items())])
+ for name, value in el.attrib.items()]))
def end_tag(el):
""" The text representation of an end tag for a tag. Includes