diff options
| author | Aymeric Augustin <aymeric.augustin@m4x.org> | 2013-09-07 13:48:24 -0500 |
|---|---|---|
| committer | Aymeric Augustin <aymeric.augustin@m4x.org> | 2013-09-07 13:48:37 -0500 |
| commit | 31e16c1343cf0d0d65e9d6e86c61bbcd7bd5fd76 (patch) | |
| tree | 633e3dc60c1c2a3825f2a7832f3cfd10ed74c255 | |
| parent | 9dcd537b72f402f6ff986add7a03305e7d6b3f56 (diff) | |
Negligible style fix.
| -rw-r--r-- | django/db/models/fields/__init__.py | 4 |
1 files 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 |
