Django

Code

Changeset 8146

Show
Ignore:
Timestamp:
07/29/08 22:16:39 (5 months ago)
Author:
mtredinnick
Message:

Fixed #8028 -- A couple of small docstring fixes from [8131]. Thanks, Leo Soto.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/db/backends/__init__.py

    r8131 r8146  
    278278        """ 
    279279        Transform a datetime value to an object compatible with what is expected 
    280         by the backend driver for date columns. 
     280        by the backend driver for datetime columns. 
    281281        """ 
    282282        if value is None: 
     
    287287        """ 
    288288        Transform a datetime value to an object compatible with what is expected 
    289         by the backend driver for date columns. 
     289        by the backend driver for time columns. 
    290290        """ 
    291291        if value is None: