1
0
mirror of https://github.com/django/django.git synced 2025-04-01 12:06:43 +00:00

Fixed #13577 - wrong thousands separator in Polish formats file. Thanks sero for report.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@13327 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jarek Zgoda 2010-06-07 14:47:10 +00:00
parent 454622c6f9
commit 9ebf411f26

View File

@ -28,5 +28,5 @@ DATETIME_INPUT_FORMATS = (
'%Y-%m-%d', # '2006-10-25'
)
DECIMAL_SEPARATOR = ','
THOUSAND_SEPARATOR = '.'
NUMBER_GROUPING = 3
THOUSAND_SEPARATOR = ' '
NUMBER_GROUPING = 3