From 7a4e2fc5a2a6869089a79170e7d2903e1138bb2e Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Mon, 12 Dec 2016 09:38:13 -0500 Subject: [PATCH] Fixed #27588 -- Removed unneeded colon in makemigrations output. --- django/core/management/commands/makemigrations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/core/management/commands/makemigrations.py b/django/core/management/commands/makemigrations.py index e648880ef0..50460691d8 100644 --- a/django/core/management/commands/makemigrations.py +++ b/django/core/management/commands/makemigrations.py @@ -214,7 +214,7 @@ class Command(BaseCommand): migration_string = writer.path if migration_string.startswith('..'): migration_string = writer.path - self.stdout.write(" %s:\n" % (self.style.MIGRATE_LABEL(migration_string),)) + self.stdout.write(" %s\n" % (self.style.MIGRATE_LABEL(migration_string),)) for operation in migration.operations: self.stdout.write(" - %s\n" % operation.describe()) if not self.dry_run: