[4.0.x] Refs #32900 -- Restored '[y/N]' in questioner prompt when merging migrations.

Regression in 02bc7161ec477afd4a7b328936eb8adac078d7b9.

Backport of aa0d796e37c4b8056148de2f68726aae9d20399c from main
This commit is contained in:
Seonghyeon Cho 2021-10-09 23:53:27 +09:00 committed by Mariusz Felisiak
parent fe97f8bb62
commit 1aada25eeb

View File

@ -205,7 +205,7 @@ class InteractiveMigrationQuestioner(MigrationQuestioner):
return self._boolean_input(
"\nMerging will only work if the operations printed above do not conflict\n" +
"with each other (working on different fields or models)\n" +
'Should these migration branches be merged?',
'Should these migration branches be merged? [y/N]',
False,
)