Commit 9ebf411f authored by Jarek Zgoda's avatar Jarek Zgoda
Browse files

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
parent 454622c6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -28,5 +28,5 @@ DATETIME_INPUT_FORMATS = (
    '%Y-%m-%d',             # '2006-10-25'
)
DECIMAL_SEPARATOR = ','
THOUSAND_SEPARATOR = '.'
THOUSAND_SEPARATOR = ' '
NUMBER_GROUPING = 3