mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
...
This commit is contained in:
parent
19a79f3585
commit
3e8d9492a8
@ -491,7 +491,7 @@ def html_as_dict(root):
|
||||
stack = [(root, tree)]
|
||||
while stack:
|
||||
elem, node = stack.pop()
|
||||
for i, child in enumerate(elem.iterchildren('*')):
|
||||
for child in elem.iterchildren('*'):
|
||||
cnode = serialize_elem(child, nsmap)
|
||||
if cnode is not None:
|
||||
tags.append(cnode)
|
||||
|
Loading…
x
Reference in New Issue
Block a user