From faacc54ac8601e8bdbfdc8651d68267d570a9c4b Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Wed, 23 Jul 2014 10:10:42 -0400 Subject: [PATCH] Fixed #22891 -- Clarified that collecstatic --clear with delete all files in the storage location. --- django/contrib/staticfiles/management/commands/collectstatic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/contrib/staticfiles/management/commands/collectstatic.py b/django/contrib/staticfiles/management/commands/collectstatic.py index 2d2413e808..e593056ce2 100644 --- a/django/contrib/staticfiles/management/commands/collectstatic.py +++ b/django/contrib/staticfiles/management/commands/collectstatic.py @@ -154,7 +154,7 @@ class Command(BaseCommand): message.append('.\n\n') if self.clear: - message.append('This will DELETE EXISTING FILES!\n') + message.append('This will DELETE ALL FILES in this location!\n') else: message.append('This will overwrite existing files!\n')