compileless.py 284 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
from django.core.management.base import BaseCommand

from common.management.commands.watch import LessUtils


class Command(BaseCommand):
    help = "Compiles all LESS files."

    def handle(self, *args, **kwargs):
        print("Compiling LESS")
        LessUtils.initial_compile()