From 53ac6f9782802e2438b4f58acbcf3da0924ff53f Mon Sep 17 00:00:00 2001 From: Duncan Foster Date: Tue, 28 Feb 2006 19:27:42 +0000 Subject: [PATCH] magic-removal: Fixed #1172, Datetime fields in admin interface shouldn't be cleared for validation errors. Simply return the bad data. git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2446 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/forms/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/forms/__init__.py b/django/forms/__init__.py index 1d743f6e2a..4d3c24c373 100644 --- a/django/forms/__init__.py +++ b/django/forms/__init__.py @@ -781,7 +781,7 @@ class DateField(TextField): time_tuple = time.strptime(data, '%Y-%m-%d') return datetime.date(*time_tuple[0:3]) except (ValueError, TypeError): - return None + return data html2python = staticmethod(html2python) class TimeField(TextField):