app/django/core/management/commands/validate.py
author Lennard de Rijk <ljvderijk@gmail.com>
Mon, 29 Jun 2009 15:19:28 +0200
changeset 2446 0cf8f034f52d
parent 54 03e267d67478
permissions -rw-r--r--
Extracted the ProjectSurvey and ProjectGradingSurvey records to a new module.

from django.core.management.base import NoArgsCommand

class Command(NoArgsCommand):
    help = "Validates all installed models."

    requires_model_validation = False

    def handle_noargs(self, **options):
        self.validate(display_num_errors=True)