From: Guillaume Pellerin Date: Thu, 26 Dec 2013 14:53:08 +0000 (+0100) Subject: bugfix X-Git-Tag: 1.4.5~2^2~2 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=4c67d3df50912ca95aa6bad50e6dbed7bfc84c85;p=telemeta.git bugfix --- diff --git a/telemeta/util/xmltodict2.py b/telemeta/util/xmltodict2.py index 10db1389..11c7fd06 100644 --- a/telemeta/util/xmltodict2.py +++ b/telemeta/util/xmltodict2.py @@ -185,7 +185,7 @@ def xmltodict(xml, attsToSkip=[], addCodeFile=False): except expat.ExpatError: errmsg = "An invalid XML string was encountered" if errmsg: - raise dabo.dException.XmlException, errmsg + raise Exception.XmlException, errmsg if addCodeFile and isPath: # Get the associated code file, if any codePth = "%s-code.py" % os.path.splitext(xml)[0]