Ejemplo n.º 1
0
def checks():
    from django.core.checks.registry import registry

    return registry.run_checks()
Ejemplo n.º 2
0
def checks():
    from django.core.checks.registry import registry

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

    return registry.run_checks()
Ejemplo n.º 4
0
def checks():
    from django.core.checks.registry import registry

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