From 4c67d3df50912ca95aa6bad50e6dbed7bfc84c85 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Thu, 26 Dec 2013 15:53:08 +0100 Subject: [PATCH] bugfix --- telemeta/util/xmltodict2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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] -- 2.39.5