From 32059d0713ffdce7eeb172a4c223ce91ca98c182 Mon Sep 17 00:00:00 2001 From: Valentin Deniaud Date: Mon, 25 Nov 2019 15:11:42 +0100 Subject: [PATCH] csv_import: explicit utf-8 encoding choice (#37901) --- src/authentic2/manager/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/authentic2/manager/forms.py b/src/authentic2/manager/forms.py index cfac25c9..7c3ca5fd 100644 --- a/src/authentic2/manager/forms.py +++ b/src/authentic2/manager/forms.py @@ -706,7 +706,7 @@ class SiteImportForm(forms.Form): ENCODINGS = [ - ('utf-8', _('Unicode')), + ('utf-8', _('Unicode (UTF-8)')), ('cp1252', _('Western Europe (Windows-1252)')), ('iso-8859-15', _('Western Europe (ISO-8859-15)')), ] -- 2.20.1