Return an empty list of files in the staticfiles finder so staticfiles doesn't pick up any file when running collectstatic. This fixes #63.

This commit is contained in:
Jannis Leidel
2011-08-09 12:35:30 +02:00
parent 25088b93c0
commit 55ba6a2014

View File

@@ -10,3 +10,6 @@ class CompressorFinder(staticfiles.finders.BaseStorageFinder):
deployment.
"""
storage = CompressorFileStorage
def list(self, ignore_patterns):
return []