Commit c8cd8ee4 authored by Chris Lamb's avatar Chris Lamb 👀
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
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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):