Kaydet (Commit) bc05fc5d authored tarafından Neal Norwitz's avatar Neal Norwitz

Add missing self. before curNode. This may need to be committed

to PyXML, I'm not sure of the procedure.
üst 11a35f54
......@@ -269,7 +269,7 @@ class ExpatBuilder:
node = self.document.createProcessingInstruction(target, data)
_append_child(self.curNode, node)
if self._filter and self._filter.acceptNode(node) == FILTER_REJECT:
curNode.removeChild(node)
self.curNode.removeChild(node)
def character_data_handler_cdata(self, data):
childNodes = self.curNode.childNodes
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment