~roadmr/django-saml2-idp/custom-certificate-support

« back to all changes in this revision

Viewing changes to idptest/saml2idp/base.py

  • Committer: Daniel Manrique
  • Date: 2017-12-08 15:44:52 UTC
  • Revision ID: roadmr@ubuntu.com-20171208154452-b9p6qn43dr2adkeb
SpaceĀ aroundĀ operator

Show diffs side-by-side

added added

removed removed

Lines of Context:
135
135
        """
136
136
        Formats _response_params as _response_xml.
137
137
        """
138
 
        sign_it=saml2idp_metadata.SAML2IDP_CONFIG['signing']
 
138
        sign_it = saml2idp_metadata.SAML2IDP_CONFIG['signing']
139
139
        self._response_xml = xml_render.get_response_xml(
140
140
            self._response_params, signed=sign_it, certificate=certificate)
141
141