13 lines
284 B
Python
13 lines
284 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.core import management
|
|
|
|
from ...classes import Dependency
|
|
|
|
|
|
class Command(management.BaseCommand):
|
|
help = 'Output the status of the defined dependencies.'
|
|
|
|
def handle(self, *args, **options):
|
|
Dependency.check_all()
|