parent
36d14ffdcf
commit
a10e3925d5
1 changed files with 3 additions and 1 deletions
|
@ -652,8 +652,9 @@ class XmlKodiSetting(object):
|
||||||
def __enter__(self):
|
def __enter__(self):
|
||||||
try:
|
try:
|
||||||
self.tree = defused_etree.parse(self.path)
|
self.tree = defused_etree.parse(self.path)
|
||||||
except IOError:
|
except (IOError, TypeError):
|
||||||
# Document is blank or missing
|
# Document is blank or missing
|
||||||
|
# OR (TypeError): Fuck-up if file is empty
|
||||||
if self.force_create is False:
|
if self.force_create is False:
|
||||||
LOG.debug('%s does not seem to exist; not creating', self.path)
|
LOG.debug('%s does not seem to exist; not creating', self.path)
|
||||||
# This will abort __enter__
|
# This will abort __enter__
|
||||||
|
@ -669,6 +670,7 @@ class XmlKodiSetting(object):
|
||||||
self.filename,
|
self.filename,
|
||||||
'http://kodi.wiki'))
|
'http://kodi.wiki'))
|
||||||
self.__exit__(ParseError('Error parsing XML'), None, None)
|
self.__exit__(ParseError('Error parsing XML'), None, None)
|
||||||
|
raise ParseError
|
||||||
self.root = self.tree.getroot()
|
self.root = self.tree.getroot()
|
||||||
return self
|
return self
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue