diff --git a/django/contrib/staticfiles/management/commands/collectstatic.py b/django/contrib/staticfiles/management/commands/collectstatic.py
index 66dd782..7e5123b 100644
a
|
b
|
class Command(BaseCommand):
|
264 | 264 | and os.path.islink(full_path))): |
265 | 265 | if prefixed_path not in self.unmodified_files: |
266 | 266 | self.unmodified_files.append(prefixed_path) |
267 | | self.log("Skipping '%s' (not modified)" % path) |
| 267 | # Message changed to convey the reason clearly as to why the file was skipped beca |
| 268 | # Compares timestamps using --> http_date |
| 269 | self.log("Skipping '%s' (Dates of last modification are same)" % path) |
268 | 270 | return False |
269 | 271 | # Then delete the existing file if really needed |
270 | 272 | if self.dry_run: |