diff options
| author | Karen Tracey <kmtracey@gmail.com> | 2008-11-05 19:55:51 +0000 |
|---|---|---|
| committer | Karen Tracey <kmtracey@gmail.com> | 2008-11-05 19:55:51 +0000 |
| commit | dcfafea408a6eec2d35f9bc2f7aaff724ceee36f (patch) | |
| tree | 381868bcf2b9d5132ef420e0f5c97ee9adb39b24 /django | |
| parent | 8e7eddd59d896d70de733cf7dd94fe0d30744afb (diff) | |
[1.0.X] Fixed #9218 -- Simplified the fix from #9039 and added tests to ensure this case doesn't break again (and that the simplification didn't break anything).
[9341] from trunk. Also updated svnmerge metadata.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9342 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django')
| -rw-r--r-- | django/forms/models.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/forms/models.py b/django/forms/models.py index cd2191307e..299991e509 100644 --- a/django/forms/models.py +++ b/django/forms/models.py @@ -234,7 +234,7 @@ class BaseModelForm(BaseForm): # equal NULL in SQL we should not do any unique checking for NULL values. unique_checks = [] for check in self.instance._meta.unique_together[:]: - fields_on_form = [field for field in check if field in self.cleaned_data and not self.cleaned_data[field] is None] + fields_on_form = [field for field in check if self.cleaned_data.get(field) is not None] if len(fields_on_form) == len(check): unique_checks.append(check) @@ -248,7 +248,7 @@ class BaseModelForm(BaseForm): except FieldDoesNotExist: # This is an extra field that's not on the ModelForm, ignore it continue - if f.unique and name in self.cleaned_data and not self.cleaned_data[name] is None: + if f.unique and self.cleaned_data.get(name) is not None: unique_checks.append((name,)) bad_fields = set() |
