From 9fda9bdec8519b02e67263a3af78fc9458856aa8 Mon Sep 17 00:00:00 2001 From: Joshua Boverhof Date: Fri, 5 Nov 2004 07:32:36 +0000 Subject: [PATCH] ---------------------------------------------------------------------- Modified Files: c14n.py -- opps, want to call the implementation constructor when passed any NodeType, not just Element nodes. ---------------------------------------------------------------------- --- c14n.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c14n.py b/c14n.py index e56a354..07a1f1c 100755 --- a/c14n.py +++ b/c14n.py @@ -36,7 +36,7 @@ else: if node.nodeType == Node.ELEMENT_NODE: if not c14n._inclusive(self): self._exclusive = self._inherit_context(node) - c14n._implementation.__init__(self, node, write, **kw) + c14n._implementation.__init__(self, node, write, **kw) def _do_element(self, node, initial_other_attrs = []): """Patch for the xml.dom.ext.c14n implemenation _do_element method.