Skip to content

Commit

Permalink
Fix for issue jazzband#699 jazzband#699
Browse files Browse the repository at this point in the history
  • Loading branch information
SilviaAmAm committed May 26, 2020
1 parent 2f98377 commit cd6a993
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipeline/finders.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 []
Expand Down

1 comment on commit cd6a993

@millerthegorilla
Copy link

@millerthegorilla millerthegorilla commented on cd6a993 Jun 8, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have just tested this and it works fine noted in jazzband#763, will you make a pull request?

Please sign in to comment.