app/django/core/management/commands/validate.py
author Sverre Rabbelier <srabbelier@gmail.com>
Sat, 14 Feb 2009 20:22:17 +0000
changeset 1323 a666374587df
parent 54 03e267d67478
permissions -rw-r--r--
Add a getListRedirect and getListPublicRedirect function Patch by: Sverre Rabbelier

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)