From 17bad27260f1f45a84f33c8451fdf320b2d89f88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Mart=C3=ADn?= Date: Sat, 30 Nov 2013 19:25:58 +0100 Subject: [PATCH] Improvements in the default value --- example/example/app/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/example/app/models.py b/example/example/app/models.py index a0a915a..9910245 100644 --- a/example/example/app/models.py +++ b/example/example/app/models.py @@ -43,7 +43,7 @@ class Book(models.Model): title = models.CharField(max_length=200) categories = MultiSelectField(choices=CATEGORY_CHOICES, max_choices=3, - #default='1,5', + #default='1,5') default=1) tags = MultiSelectField(choices=TAGS_CHOICES, null=True, blank=True)