mirror of
https://github.com/Hopiu/django.git
synced 2026-03-26 10:50:23 +00:00
Fixed #23701 -- Removed an unneeded check in collectstatic.
Thanks prathik for the report.
This commit is contained in:
parent
9dc782b631
commit
36ea03eb36
1 changed files with 1 additions and 2 deletions
|
|
@ -314,5 +314,4 @@ class Command(BaseCommand):
|
|||
self.log("Copying '%s'" % source_path, level=1)
|
||||
with source_storage.open(path) as source_file:
|
||||
self.storage.save(prefixed_path, source_file)
|
||||
if prefixed_path not in self.copied_files:
|
||||
self.copied_files.append(prefixed_path)
|
||||
self.copied_files.append(prefixed_path)
|
||||
|
|
|
|||
Loading…
Reference in a new issue