Changeset 8827
- Timestamp:
- 09/01/08 18:18:42 (3 months ago)
- Files:
-
- django/trunk/django/db/models/sql/query.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/db/models/sql/query.py
r8794 r8827 1051 1051 lookup_type = 'isnull' 1052 1052 value = True 1053 elif (value == '' and lookup_type == 'exact' and 1054 connection.features.interprets_empty_strings_as_nulls): 1055 lookup_type = 'isnull' 1056 value = True 1053 1057 elif callable(value): 1054 1058 value = value()
