app/django/core/management/commands/validate.py
author Sverre Rabbelier <srabbelier@gmail.com>
Sun, 05 Apr 2009 19:37:56 +0000
changeset 2085 2f04b8ec3b96
parent 54 03e267d67478
permissions -rw-r--r--
Use different colors for public/private comment widget Patch by: Dmitri Gaskin <dmitrig01@gmail.com>

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)