diff --git a/common/djangoapps/static_replace/management/commands/clear_collectstatic_cache.py b/common/djangoapps/static_replace/management/commands/clear_collectstatic_cache.py index 1cea81b0af..9e8e401991 100644 --- a/common/djangoapps/static_replace/management/commands/clear_collectstatic_cache.py +++ b/common/djangoapps/static_replace/management/commands/clear_collectstatic_cache.py @@ -8,6 +8,6 @@ class Command(NoArgsCommand): help = \ '''Import the specified data directory into the default ModuleStore''' - def handle_noargs(self): + def handle_noargs(self, **options): staticfiles_cache = get_cache('staticfiles') staticfiles_cache.clear()