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)