Example #1
0
def checks():
    from django.core.checks.registry import registry

    return registry.run_checks()
Example #2
0
def checks():
    from django.core.checks.registry import registry

    return [e for e in registry.run_checks() if not e.is_silenced()]
Example #3
0
def checks():
    from django.core.checks.registry import registry

    return registry.run_checks()
Example #4
0
def checks():
    from django.core.checks.registry import registry

    return [e for e in registry.run_checks() if not e.is_silenced()]