mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
Add None check to _iterate_over_text
This commit is contained in:
parent
f743471380
commit
f90b3d83a3
@ -449,7 +449,7 @@ def _iterate_over_text(tree, *tags_to_ignore):
|
|||||||
el = elements.next()
|
el = elements.next()
|
||||||
if isinstance(el, basestring):
|
if isinstance(el, basestring):
|
||||||
yield el
|
yield el
|
||||||
elif el.tag not in tags_to_ignore:
|
elif el is not None and el.tag not in tags_to_ignore:
|
||||||
# el.text is the text before the first child, so we can immediately
|
# el.text is the text before the first child, so we can immediately
|
||||||
# return it if the text exists.
|
# return it if the text exists.
|
||||||
if el.text:
|
if el.text:
|
||||||
|
Loading…
Reference in New Issue
Block a user