Fixed #16520 -- Fixed typo in Hungarian localization formats introduced in r16429. Thanks, slink.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@16558 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jannis Leidel 2011-07-29 09:39:42 +00:00
parent dc2bfae1e5
commit c59a635624
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ TIME_INPUT_FORMATS = (
'%H.%M', # '14.30'
)
DATETIME_INPUT_FORMATS = (
'%Y.%m.%d. %H.%m.%S', # '2006.10.25. 14.30.59'
'%Y.%m.%d. %H.%M.%S', # '2006.10.25. 14.30.59'
'%Y.%m.%d. %H.%M', # '2006.10.25. 14.30'
'%Y.%m.%d.', # '2006.10.25.'
)