Fix TypeError: 'NoneType' object is not an iterator
When deleting sub-elements in a stanza.
This commit is contained in:
parent
98108d0445
commit
2add94f5b0
1 changed files with 7 additions and 2 deletions
|
@ -1031,12 +1031,17 @@ class ElementBase(object):
|
|||
if not lang:
|
||||
lang = default_lang
|
||||
|
||||
parent = self.xml
|
||||
for level, _ in enumerate(path):
|
||||
# Generate the paths to the target elements and their parent.
|
||||
element_path = "/".join(path[:len(path) - level])
|
||||
parent_path = "/".join(path[:len(path) - level - 1])
|
||||
|
||||
elements = self.xml.findall(element_path)
|
||||
|
||||
if parent_path == '':
|
||||
parent_path = None
|
||||
if parent_path is not None:
|
||||
parent = self.xml.find(parent_path)
|
||||
|
||||
if elements:
|
||||
|
|
Loading…
Reference in a new issue