diff options
| author | Tim Graham <timograham@gmail.com> | 2014-07-23 10:10:42 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-07-23 10:16:51 -0400 |
| commit | faacc54ac8601e8bdbfdc8651d68267d570a9c4b (patch) | |
| tree | 0270a80a9f2dda05692409c8025551a90e1ffdfd | |
| parent | fa3cf006b2912708e8c0b294cea91933cf35781f (diff) | |
Fixed #22891 -- Clarified that collecstatic --clear with delete all files in the storage location.
| -rw-r--r-- | django/contrib/staticfiles/management/commands/collectstatic.py | 2 |
1 files changed, 1 insertions, 1 deletions
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') |
