Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Change Log

Released on XXX, 2014

* XXX
* Minor fix on error reporting message.


0.999
Expand Down
2 changes: 1 addition & 1 deletion html5lib/html5parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -1327,7 +1327,7 @@ def endTagBody(self, token):
# Not sure this is the correct name for the parse error
self.parser.parseError(
"expected-one-end-tag-but-got-another",
{"expectedName": "body", "gotName": node.name})
{"gotName": "body", "expectedName": node.name})
break
self.parser.phase = self.parser.phases["afterBody"]

Expand Down