Changes between Initial Version and Version 1 of Ticket #13327
- Timestamp:
- Apr 12, 2010, 10:38:57 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #13327 – Description
initial v1 1 1 Many of the accessor methods on the FileField call this method: 2 2 {{{ 3 3 def _require_file(self): 4 4 if not self: 5 5 raise ValueError("The '%s' attribute has no file associated with it." % self.field.name) 6 6 }}} 7 7 This method defeats the blank or null features, and has 0 benefit. 8 8