Changes between Initial Version and Version 1 of Ticket #13327


Ignore:
Timestamp:
Apr 12, 2010, 10:38:57 AM (14 years ago)
Author:
Alex Gaynor
Comment:

Please use preview.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #13327 – Description

    initial v1  
    11Many of the accessor methods on the FileField call this method:
    2 
     2{{{
    33    def _require_file(self):
    44        if not self:
    55            raise ValueError("The '%s' attribute has no file associated with it." % self.field.name)
    6 
     6}}}
    77This method defeats the blank or null features, and has 0 benefit.
    88
Back to Top