pandora/pandora/app/management/commands/update_static.py

16 lines
285 B
Python
Raw Normal View History

2011-10-23 02:29:20 +00:00
# -*- 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()