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
1 changed files with 2 additions and 2 deletions

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