--- documentViewer/Attic/SrvTxtUtils.py 2011/07/19 18:46:35 1.1.2.1 +++ documentViewer/Attic/SrvTxtUtils.py 2011/07/29 16:27:23 1.1.2.2 @@ -22,7 +22,7 @@ def getText(node): # ElementTree: text = node.text or "" for e in node: - text += gettext(e) + text += getText(e) if e.tail: text += e.tail