Changeset 5931
- Timestamp:
- 08/18/07 01:35:28 (1 year ago)
- Files:
-
- django/branches/newforms-admin/AUTHORS (modified) (1 diff)
- django/branches/newforms-admin/django/newforms/formsets.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/newforms-admin/AUTHORS
r5918 r5931 63 63 Paul Bissex <http://e-scribe.com/> 64 64 Simon Blanchard 65 David Blewett <david@dawninglight.net> 65 66 Matt Boersma <ogghead@gmail.com> 66 67 boobsd@gmail.com django/branches/newforms-admin/django/newforms/formsets.py
r5926 r5931 22 22 23 23 def __init__(self, data=None, files=None, auto_id='id_%s', prefix=None, initial=None): 24 self.is_bound = data is not None andfiles is not None24 self.is_bound = data is not None or files is not None 25 25 self.prefix = prefix or 'form' 26 26 self.auto_id = auto_id
