metadata.py: line 97, should be
req_attr_isrequired_str = " isRequired="%s"" % 'true' if req_attribs['isRequired'] else 'false'
otherwise, it sets isRequired="True" and the package complains:
Errors validating the metadata:
Element '{urn:oasis:names:tc:SAML:2.0:metadata}RequestedAttribute', attribute 'isRequired': 'True' is not a valid value of the atomic type 'xs:boolean'.
metadata.py: line 97, should be
req_attr_isrequired_str = " isRequired="%s"" % 'true' if req_attribs['isRequired'] else 'false'
otherwise, it sets isRequired="True" and the package complains:
Errors validating the metadata:
Element '{urn:oasis:names:tc:SAML:2.0:metadata}RequestedAttribute', attribute 'isRequired': 'True' is not a valid value of the atomic type 'xs:boolean'.