From 0ae4e102dc60de49d8f1457373458082f6639086 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Sat, 18 Aug 2007 06:35:28 +0000 Subject: [PATCH] newforms-admin: Fixed #5199 -- Corrected is_bound logic for formsets. Well spotted, David Blewett . git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@5931 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- AUTHORS | 1 + django/newforms/formsets.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/AUTHORS b/AUTHORS index a0032f5198..3ce1875d33 100644 --- a/AUTHORS +++ b/AUTHORS @@ -62,6 +62,7 @@ answer newbie questions, and generally made Django that much better: Ben Paul Bissex Simon Blanchard + David Blewett Matt Boersma boobsd@gmail.com Andrew Brehaut diff --git a/django/newforms/formsets.py b/django/newforms/formsets.py index 7637a093d9..38982b47de 100644 --- a/django/newforms/formsets.py +++ b/django/newforms/formsets.py @@ -21,7 +21,7 @@ class BaseFormSet(object): """A collection of instances of the same Form class.""" def __init__(self, data=None, files=None, auto_id='id_%s', prefix=None, initial=None): - self.is_bound = data is not None and files is not None + self.is_bound = data is not None or files is not None self.prefix = prefix or 'form' self.auto_id = auto_id self.data = data