changeset 136:a2114cd4673c

fixed broken imports (silly me)
author casties
date Fri, 18 Jun 2010 16:23:20 +0200
parents 123248b3bb34
children 2fa9d30f4ab0
files documentViewer.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/documentViewer.py	Fri Jun 18 16:10:18 2010 +0200
+++ b/documentViewer.py	Fri Jun 18 16:23:20 2010 +0200
@@ -43,7 +43,7 @@
 def serializeNode(node, encoding='utf-8'):
     """returns a string containing node as XML"""
     buf = cStringIO.StringIO()
-    Print(node, stream=buf, encoding=encoding)
+    Ft.Xml.Domlette.Print(node, stream=buf, encoding=encoding)
     s = buf.getvalue()
     buf.close()
     return s