8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a546f65 commit d6366f8Copy full SHA for d6366f8
src/html5lib/html5parser.py
@@ -1042,9 +1042,10 @@ def endTagListItem(self, name):
1042
# AT Could merge this with the Block case
1043
if self.tree.elementInScope(name):
1044
self.tree.generateImpliedEndTags(name)
1045
- if self.tree.openElements[-1].name != name:
1046
- self.parser.parseError(_(u"End tag (" + name + ") seen too "
1047
- u"early. Expected other end tag."))
+
+ if self.tree.openElements[-1].name != name:
+ self.parser.parseError(_(u"End tag (" + name + ") seen too "
1048
+ u"early. Expected other end tag."))
1049
1050
1051
node = self.tree.openElements.pop()
0 commit comments