--- zogiLib/xml_helpers.py 2004/03/25 18:07:37 1.1 +++ zogiLib/xml_helpers.py 2004/07/19 16:31:46 1.2 @@ -44,7 +44,12 @@ def readArchimedesXML(folder): return "" +def getUniqueElementText(node): + try: + return getText(node[0].childNodes) + except: + return "" def getText(nodelist): rc = ""