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 409168e commit 5b60568Copy full SHA for 5b60568
src/html5lib/treebuilders/simpletree.py
@@ -30,7 +30,7 @@ def printTree(self, indent=0):
30
tree += child.printTree(indent + 2)
31
return tree
32
33
- def appendChild(self, node, index=None):
+ def appendChild(self, node):
34
if (isinstance(node, TextNode) and self.childNodes and
35
isinstance(self.childNodes[-1], TextNode)):
36
self.childNodes[-1].value += node.value
0 commit comments