Skip to content

Commit

Permalink
Fixed #8028 -- A couple of small docstring fixes from [8131]. Thanks,…
Browse files Browse the repository at this point in the history
… Leo Soto.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@8146 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
malcolmt committed Jul 30, 2008
1 parent 464a9c8 commit b7e74e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions django/db/backends/__init__.py
Expand Up @@ -277,7 +277,7 @@ def value_to_db_date(self, value):
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
Expand All @@ -286,7 +286,7 @@ def value_to_db_datetime(self, value):
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
Expand Down

0 comments on commit b7e74e5

Please sign in to comment.