summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlejandro Sánchez <elcone@gmail.com>2018-03-12 19:07:54 -0700
committerTim Graham <timograham@gmail.com>2018-03-12 22:07:54 -0400
commitb639bcc2503d66870f72bdffc01abc015a548462 (patch)
tree8b11c4ecae9abce98be73ce2cb29fd3839a0714b
parentd696fccae6ea0868855aa28f8d2bc2f7f77ac208 (diff)
Changed es_MX's THOUSAND_SEPARATOR to a comma.
-rw-r--r--django/conf/locale/es_MX/formats.py2
1 files changed, 1 insertions, 1 deletions
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