From cd6a993218dcaeceb9fab720e408c9e6c6a2b6ef Mon Sep 17 00:00:00 2001 From: silvia Date: Tue, 26 May 2020 15:59:27 +0200 Subject: [PATCH] Fix for issue #699 https://github.com/jazzband/django-pipeline/issues/699 --- pipeline/finders.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipeline/finders.py b/pipeline/finders.py index 4d1c535d..ef26a2b3 100644 --- a/pipeline/finders.py +++ b/pipeline/finders.py @@ -13,7 +13,7 @@ class PipelineFinder(BaseStorageFinder): storage = staticfiles_storage def find(self, path, all=False): - if not settings.PIPELINE_ENABLED: + if settings.PIPELINE_ENABLED: return super(PipelineFinder, self).find(path, all) else: return []