From 150c3d13a6fdf1a89a0fa90a8f8687fe3757a015 Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Tue, 21 Apr 2020 10:19:43 +0200 Subject: [PATCH] Refs #29983 -- Fixed displaying pathlib.Path database name in flush command's inputs. --- django/core/management/commands/flush.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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?