diff --git a/django/contrib/staticfiles/management/commands/collectstatic.py b/django/contrib/staticfiles/management/commands/collectstatic.py index 563a6ac161..24b29e4556 100644 --- a/django/contrib/staticfiles/management/commands/collectstatic.py +++ b/django/contrib/staticfiles/management/commands/collectstatic.py @@ -67,12 +67,12 @@ class Command(NoArgsCommand): if options.get('interactive'): confirm = raw_input(u""" You have requested to collect static files at the destination -location as specified in your settings file ('%s'). +location as specified in your settings file. This will overwrite existing files. Are you sure you want to do this? -Type 'yes' to continue, or 'no' to cancel: """ % settings.STATIC_ROOT) +Type 'yes' to continue, or 'no' to cancel: """) if confirm != 'yes': raise CommandError("Collecting static files cancelled.")