From a79e786741a8ff07ea4fd5ee16c88c668053e684 Mon Sep 17 00:00:00 2001 From: Fergal Moran Date: Sat, 31 May 2014 17:43:13 +0100 Subject: [PATCH] Added cache busting to pipeline --- dss/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dss/settings.py b/dss/settings.py index 5511875..e1561ba 100755 --- a/dss/settings.py +++ b/dss/settings.py @@ -86,7 +86,7 @@ STATICFILES_FINDERS = ( 'django.contrib.staticfiles.finders.AppDirectoriesFinder', 'compressor.finders.CompressorFinder', ) -STATICFILES_STORAGE = 'pipeline.storage.PipelineCachedStorage' +STATICFILES_STORAGE = 'pipeline.storage.NonPackagingPipelineCachedStorage' STATICFILES_DIRS = ( here('static'), )