Skip to content

Commit

Permalink
Fixed #23701 -- Removed an unneeded check in collectstatic.
Browse files Browse the repository at this point in the history
Thanks prathik for the report.
  • Loading branch information
timgraham committed Oct 22, 2014
1 parent 9dc782b commit 36ea03e
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -314,5 +314,4 @@ def copy_file(self, path, prefixed_path, source_storage):
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)

0 comments on commit 36ea03e

Please sign in to comment.