From 31e16c1343cf0d0d65e9d6e86c61bbcd7bd5fd76 Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Sat, 7 Sep 2013 13:48:24 -0500 Subject: [PATCH] Negligible style fix. --- django/db/models/fields/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/django/db/models/fields/__init__.py b/django/db/models/fields/__init__.py index 91046f98c6..5d74e2002d 100644 --- a/django/db/models/fields/__init__.py +++ b/django/db/models/fields/__init__.py @@ -114,8 +114,8 @@ class Field(object): self.default = default self.editable = editable self.serialize = serialize - self.unique_for_date, self.unique_for_month = (unique_for_date, - unique_for_month) + self.unique_for_date = unique_for_date + self.unique_for_month = unique_for_month self.unique_for_year = unique_for_year self._choices = choices or [] self.help_text = help_text