cook : perform clean_fields() validations

This commit is contained in:
Christophe Siraut 2019-04-12 14:46:50 +02:00
parent e2ffab609d
commit 9f715b356a
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ class Command(BaseCommand):
must_save = True
if must_save:
try:
obj.clean()
obj.full_clean()
except ValidationError as e:
raise CommandError(str(e))