From b7e74e5e56fd203ab979d8fddf3aa16f03db2e38 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Wed, 30 Jul 2008 03:16:39 +0000 Subject: [PATCH] Fixed #8028 -- A couple of small docstring fixes from [8131]. Thanks, Leo Soto. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8146 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/db/backends/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/django/db/backends/__init__.py b/django/db/backends/__init__.py index c65af85d8dd..d65eacd0427 100644 --- a/django/db/backends/__init__.py +++ b/django/db/backends/__init__.py @@ -277,7 +277,7 @@ class BaseDatabaseOperations(object): def value_to_db_datetime(self, value): """ Transform a datetime value to an object compatible with what is expected - by the backend driver for date columns. + by the backend driver for datetime columns. """ if value is None: return None @@ -286,7 +286,7 @@ class BaseDatabaseOperations(object): def value_to_db_time(self, value): """ Transform a datetime value to an object compatible with what is expected - by the backend driver for date columns. + by the backend driver for time columns. """ if value is None: return None