Skip to content
Snippets Groups Projects
Commit c8cd8ee4 authored by Chris Lamb's avatar Chris Lamb :eyes:
Browse files

pyexpat 2.6.0 is not vulnerable to the XML entity expansion attack, so we can...

pyexpat 2.6.0 is not vulnerable to the XML entity expansion attack, so we can drop this equals sign. Thanks, Florian!
parent 889597c9
No related branches found
No related tags found
No related merge requests found
Pipeline #798313 failed
......@@ -57,7 +57,7 @@ def is_vulnerable_xml_parser():
int(x) for x in pyexpat.EXPAT_VERSION.split("_", 1)[1].split(".")
)
return pyexpat_version <= (2, 6, 0)
return pyexpat_version < (2, 6, 0)
def _format(node):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment