Projet

Général

Profil

0001-csv_import-explicit-utf-8-encoding-choice-37901.patch

Valentin Deniaud, 25 novembre 2019 15:15

Télécharger (773 octets)

Voir les différences:

Subject: [PATCH] csv_import: explicit utf-8 encoding choice (#37901)

 src/authentic2/manager/forms.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
src/authentic2/manager/forms.py
706 706

  
707 707

  
708 708
ENCODINGS = [
709
    ('utf-8', _('Unicode')),
709
    ('utf-8', _('Unicode (UTF-8)')),
710 710
    ('cp1252', _('Western Europe (Windows-1252)')),
711 711
    ('iso-8859-15', _('Western Europe (ISO-8859-15)')),
712 712
]
713
-