Projet

Général

Profil

0003-to-fixup-missing.patch

Benjamin Dauvergne, 15 novembre 2019 15:05

Télécharger (1014 octets)

Voir les différences:

Subject: [PATCH 3/4] to fixup: missing =

 passerelle/base/templatetags/passerelle.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
passerelle/base/templatetags/passerelle.py
236 236
    s = mark_safe('<ul>')
237 237
    for key in body_schemas:
238 238
        if key == 'application/json':
239
            s += mark_safe('<li><tt>application/json</tt> : <span class"json-schema">')
239
            s += mark_safe('<li><tt>application/json</tt> : <span class="json-schema">')
240 240
            s += render_json_schema(body_schemas['application/json'])
241 241
            s += mark_safe('</span></li>')
242 242
        else:
243
-