diff options
| author | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2008-07-30 03:16:39 +0000 |
|---|---|---|
| committer | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2008-07-30 03:16:39 +0000 |
| commit | b7e74e5e56fd203ab979d8fddf3aa16f03db2e38 (patch) | |
| tree | 0441315cf9fdb23422a0b2d579e4386851239183 | |
| parent | 464a9c8ca482f4a96c9da66e791bd3fb646ffbd2 (diff) | |
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
| -rw-r--r-- | django/db/backends/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/db/backends/__init__.py b/django/db/backends/__init__.py index c65af85d8d..d65eacd042 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 |
