Skip to content

Commit

Permalink
Merge pull request #424 from lexqt/fix/pipelinefinder_list
Browse files Browse the repository at this point in the history
PipelineFinder.list should always return empty list
  • Loading branch information
cyberdelia committed Feb 12, 2015
2 parents 638b794 + b1606ce commit 715e8ca
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions pipeline/finders.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,7 @@ def find(self, path, all=False):
return []

def list(self, ignore_patterns):
if not settings.PIPELINE_ENABLED:
return super(PipelineFinder, self).list(ignore_patterns)
else:
return []
return []


class ManifestFinder(BaseFinder):
Expand Down

0 comments on commit 715e8ca

Please sign in to comment.