Commit 87b748b3 authored by Jannis Leidel's avatar Jannis Leidel
Browse files

Fixed #13863 -- Corrected decimal separator in Swedish format module. Thanks, Ulf Urdén.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@14128 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 791cc62d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -30,6 +30,6 @@ DATETIME_INPUT_FORMATS = (
    '%m/%d/%y %H:%M',        # '10/25/06 14:30'
    '%m/%d/%y',              # '10/25/06'
)
DECIMAL_SEPARATOR = '.'
DECIMAL_SEPARATOR = ','
THOUSAND_SEPARATOR = ' '
NUMBER_GROUPING = 3