15 lines
285 B
Python
15 lines
285 B
Python
# -*- coding: utf-8 -*-
|
|
# vi:si:et:sw=4:sts=4:ts=4
|
|
from django.core.management.base import BaseCommand
|
|
|
|
from ... import models
|
|
|
|
|
|
class Command(BaseCommand):
|
|
"""
|
|
"""
|
|
help = 'update static files'
|
|
args = ''
|
|
|
|
def handle(self, **options):
|
|
models.update_static()
|