From 10f8dbfa466b8bdbf579f1a42dcc2c8d936f68c0 Mon Sep 17 00:00:00 2001 From: Calen Pennington Date: Mon, 4 Feb 2013 13:52:52 -0500 Subject: [PATCH] Handle options passed to clear_collectstatic_cache --- .../management/commands/clear_collectstatic_cache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()