Changeset 8146
- Timestamp:
- 07/29/08 22:16:39 (5 months ago)
- Files:
-
- django/trunk/django/db/backends/__init__.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/db/backends/__init__.py
r8131 r8146 278 278 """ 279 279 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. 281 281 """ 282 282 if value is None: … … 287 287 """ 288 288 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. 290 290 """ 291 291 if value is None:
