From b639bcc2503d66870f72bdffc01abc015a548462 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20S=C3=A1nchez?= Date: Mon, 12 Mar 2018 19:07:54 -0700 Subject: [PATCH] Changed es_MX's THOUSAND_SEPARATOR to a comma. --- django/conf/locale/es_MX/formats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/conf/locale/es_MX/formats.py b/django/conf/locale/es_MX/formats.py index 228a821716..760edcfa1c 100644 --- a/django/conf/locale/es_MX/formats.py +++ b/django/conf/locale/es_MX/formats.py @@ -21,5 +21,5 @@ DATETIME_INPUT_FORMATS = [ '%d/%m/%y %H:%M', ] DECIMAL_SEPARATOR = '.' # ',' is also official (less common): NOM-008-SCFI-2002 -THOUSAND_SEPARATOR = '\xa0' # non-breaking space +THOUSAND_SEPARATOR = ',' NUMBER_GROUPING = 3