Commit 29514cc2 by bmedx

Update clear_collectstatic_cache management command to Django 1.11 spec

parent 70dc3359
###
### Script for importing courseware from XML format
###
"""
Django management command to clear the 'staticfiles' Django cache
"""
from django.core.management.base import NoArgsCommand
from __future__ import print_function
from django.core.management.base import BaseCommand
from django.core.cache import caches
class Command(NoArgsCommand):
help = 'Import the specified data directory into the default ModuleStore'
class Command(BaseCommand):
"""
Implementation of the management command
"""
help = 'Empties the Django caches["staticfiles"] cache.'
def handle_noargs(self, **options):
def handle(self, *args, **_):
staticfiles_cache = caches['staticfiles']
staticfiles_cache.clear()
print("Cache cleared.")
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment