Changeset 8139
- Timestamp:
- 07/29/08 16:43:07 (4 months ago)
- Files:
-
- django/trunk/django/db/models/fields/__init__.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/db/models/fields/__init__.py
r8131 r8139 386 386 "Returns flattened choices with a default blank choice included." 387 387 first_choice = include_blank and blank_choice or [] 388 return first_choice s+ list(self.flatchoices)388 return first_choice + list(self.flatchoices) 389 389 390 390 def _get_val_from_obj(self, obj):
