diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2020-04-21 10:19:43 +0200 |
|---|---|---|
| committer | Carlton Gibson <carlton@noumenal.es> | 2020-04-21 12:08:25 +0200 |
| commit | 150c3d13a6fdf1a89a0fa90a8f8687fe3757a015 (patch) | |
| tree | 9d728013df5f39d8c3015c375bb047819db2d282 | |
| parent | 75866b93cc285c87cfc764a32d081493b19c1dc5 (diff) | |
Refs #29983 -- Fixed displaying pathlib.Path database name in flush command's inputs.
| -rw-r--r-- | django/core/management/commands/flush.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/management/commands/flush.py b/django/core/management/commands/flush.py index bc8021cf4e..a187a65684 100644 --- a/django/core/management/commands/flush.py +++ b/django/core/management/commands/flush.py @@ -50,7 +50,7 @@ class Command(BaseCommand): if interactive: confirm = input("""You have requested a flush of the database. -This will IRREVERSIBLY DESTROY all data currently in the %r database, +This will IRREVERSIBLY DESTROY all data currently in the "%s" database, and return each table to an empty state. Are you sure you want to do this? |
