Error during save are now skipped and display
This commit is contained in:
parent
aa285b1393
commit
f8999d1e7f
@ -3,7 +3,9 @@
|
|||||||
import xml.sax
|
import xml.sax
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
from datetime import date
|
from datetime import date
|
||||||
|
import sys
|
||||||
import time
|
import time
|
||||||
|
import traceback
|
||||||
|
|
||||||
class ModuleState:
|
class ModuleState:
|
||||||
"""Tiny tree representation of an XML file"""
|
"""Tiny tree representation of an XML file"""
|
||||||
@ -175,12 +177,18 @@ class ModuleState:
|
|||||||
attribs[att] = str(self.attributes[att])
|
attribs[att] = str(self.attributes[att])
|
||||||
attrs = xml.sax.xmlreader.AttributesImpl(attribs)
|
attrs = xml.sax.xmlreader.AttributesImpl(attribs)
|
||||||
|
|
||||||
|
try:
|
||||||
gen.startElement(self.name, attrs)
|
gen.startElement(self.name, attrs)
|
||||||
|
|
||||||
for child in self.childs:
|
for child in self.childs:
|
||||||
child.save_node(gen)
|
child.save_node(gen)
|
||||||
|
|
||||||
gen.endElement(self.name)
|
gen.endElement(self.name)
|
||||||
|
except:
|
||||||
|
print ("\033[1;31mERROR:\033[0m occurred when saving the "
|
||||||
|
"following XML node: %s with %s" % (self.name, attrs))
|
||||||
|
exc_type, exc_value, exc_traceback = sys.exc_info()
|
||||||
|
traceback.print_exception(exc_type, exc_value, exc_traceback)
|
||||||
|
|
||||||
def save(self, filename):
|
def save(self, filename):
|
||||||
"""Save the current node as root node in a XML file"""
|
"""Save the current node as root node in a XML file"""
|
||||||
|
Loading…
Reference in New Issue
Block a user