Browse Source

----------------------------------------------------------------------

Modified Files:
 	c14n.py -- fixed a bug affecting those who don't have pyXML installed.
 ----------------------------------------------------------------------
main
Joshua Boverhof 20 years ago
parent
commit
70e9750b7d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      c14n.py

+ 1
- 1
c14n.py View File

@@ -525,7 +525,7 @@ def Canonicalize(node, output=None, **kw):
else:
apply(_implementation2, (node, output.write), kw)
else:
s = c14n.StringIO.StringIO()
s = StringIO.StringIO()
if _implementation2 is None:
_implementation(node, s.write, **kw)
else:


Loading…
Cancel
Save