Ticket #8422: patch.diff
File patch.diff, 518 bytes (added by , 16 years ago) |
---|
-
django/forms/fields.py
780 780 widget=widget, label=label, initial=initial, help_text=help_text, 781 781 *args, **kwargs) 782 782 self.choices = [] 783 if not required: 784 self.choices.append(('','')) 783 785 if self.match is not None: 784 786 self.match_re = re.compile(self.match) 785 787 if recursive: