From c59a635624e83485960836f15a88ba24b63543c0 Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Fri, 29 Jul 2011 09:39:42 +0000 Subject: [PATCH] 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 --- django/conf/locale/hu/formats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/conf/locale/hu/formats.py b/django/conf/locale/hu/formats.py index 8ee1c0feea..53a8fc7cb0 100644 --- a/django/conf/locale/hu/formats.py +++ b/django/conf/locale/hu/formats.py @@ -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.' )