Skip to content

Commit

Permalink
Fixed some bad indentation
Browse files Browse the repository at this point in the history
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12210 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
lukeplant committed Jan 12, 2010
1 parent 6409554 commit e7e38d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/db/models/base.py
Expand Up @@ -660,7 +660,7 @@ def validate_unique(self, exclude=None):
date_errors = self._perform_date_checks(date_checks)

for k, v in date_errors.items():
errors.setdefault(k, []).extend(v)
errors.setdefault(k, []).extend(v)

if errors:
raise ValidationError(errors)
Expand Down

0 comments on commit e7e38d8

Please sign in to comment.