Fixed #27588 -- Removed unneeded colon in makemigrations output.

This commit is contained in:
Tim Graham 2016-12-12 09:38:13 -05:00
parent ecd625e830
commit 7a4e2fc5a2
1 changed files with 1 additions and 1 deletions

View File

@ -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: