Projet

Général

Profil

0001-make-FormData.get_json_export_dict-return-the-raw-su.patch

Benjamin Dauvergne, 10 mai 2016 16:04

Télécharger (769 octets)

Voir les différences:

Subject: [PATCH] make FormData.get_json_export_dict() return the raw
 submission_channel value (#10878)

 wcs/formdata.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
wcs/formdata.py
753 753

  
754 754
        data['submission'] = {
755 755
            'backoffice': self.backoffice_submission,
756
            'channel': self.get_submission_channel_label(),
756
            'channel': self.submission_channel or 'web',
757 757
        }
758 758

  
759 759
        return data
760
-