Fixed #28603 -- Clarified comment in collectstatic's collect().
This commit is contained in:
parent
4803834aaa
commit
2d4ccac275
|
@ -121,8 +121,7 @@ class Command(BaseCommand):
|
||||||
level=1,
|
level=1,
|
||||||
)
|
)
|
||||||
|
|
||||||
# Here we check if the storage backend has a post_process
|
# Storage backends may define a post_process() method.
|
||||||
# method and pass it the list of modified files.
|
|
||||||
if self.post_process and hasattr(self.storage, 'post_process'):
|
if self.post_process and hasattr(self.storage, 'post_process'):
|
||||||
processor = self.storage.post_process(found_files,
|
processor = self.storage.post_process(found_files,
|
||||||
dry_run=self.dry_run)
|
dry_run=self.dry_run)
|
||||||
|
|
Loading…
Reference in New Issue