Commit 07ba8d66 by Timothée Peignier

Merge pull request #139 from airtonix/patch-1

provide required argument
parents e2a9726f b41292d3
......@@ -29,6 +29,8 @@ class PipelineManifest(Manifest):
return packages
def cache(self):
ignore_patterns = getattr(settings, "STATICFILES_IGNORE_PATTERNS", None)
if settings.PIPELINE:
for package in self.packages:
yield str(self.packager.individual_url(package.output_filename))
......@@ -36,5 +38,5 @@ class PipelineManifest(Manifest):
for package in self.packages:
for path in self.packager.compile(package.paths):
yield str(self.packager.individual_url(path))
for path in self.finder.list():
for path in self.finder.list(ignore_patterns):
yield str(self.packager.individual_url(path))
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment