summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2020-04-21 10:19:43 +0200
committerCarlton Gibson <carlton@noumenal.es>2020-04-21 12:08:25 +0200
commit150c3d13a6fdf1a89a0fa90a8f8687fe3757a015 (patch)
tree9d728013df5f39d8c3015c375bb047819db2d282
parent75866b93cc285c87cfc764a32d081493b19c1dc5 (diff)
Refs #29983 -- Fixed displaying pathlib.Path database name in flush command's inputs.
-rw-r--r--django/core/management/commands/flush.py2
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?