summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
Diffstat (limited to 'django')
-rw-r--r--django/db/models/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/models/base.py b/django/db/models/base.py
index dc4b8f0e7b..449c41a3b4 100644
--- a/django/db/models/base.py
+++ b/django/db/models/base.py
@@ -683,7 +683,7 @@ class Model(object):
if name in exclude:
break
else:
- unique_checks.append(check)
+ unique_checks.append(tuple(check))
# These are checks for the unique_for_<date/year/month>.
date_checks = []