Skip to content

Commit

Permalink
Merge pull request #55 from robertatakenaka/fix_etree_comment
Browse files Browse the repository at this point in the history
Troca etree por ET
  • Loading branch information
robertatakenaka authored Jun 26, 2024
2 parents 6aac955 + e0e16b4 commit 19835ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scielo_classic_website/spsxml/sps_xml_body_pipes.py
Original file line number Diff line number Diff line change
Expand Up @@ -1016,7 +1016,7 @@ def parser_node(self, node):

sibling = parent.getnext()
if sibling is None:
comment = etree.Comment("FIXME check whether element is table-wrap")
comment = ET.Comment("FIXME check whether element is table-wrap")
node.insert(1, comment)
logging.info(f"Unable to find graphic for {node.get('id')}")
return
Expand Down

0 comments on commit 19835ba

Please sign in to comment.