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

15 lines
258 B
Python
Raw Normal View History

2011-10-23 02:29:20 +00:00
# -*- coding: utf-8 -*-
from django.core.management.base import BaseCommand
2011-10-25 13:30:14 +00:00
from ... import config
2011-10-23 02:29:20 +00:00
class Command(BaseCommand):
"""
"""
help = 'update static files'
args = ''
def handle(self, **options):
2011-10-25 13:30:14 +00:00
config.update_static()