Fixed #27588 -- Removed unneeded colon in makemigrations output.
This commit is contained in:
parent
ecd625e830
commit
7a4e2fc5a2
|
@ -214,7 +214,7 @@ class Command(BaseCommand):
|
||||||
migration_string = writer.path
|
migration_string = writer.path
|
||||||
if migration_string.startswith('..'):
|
if migration_string.startswith('..'):
|
||||||
migration_string = writer.path
|
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:
|
for operation in migration.operations:
|
||||||
self.stdout.write(" - %s\n" % operation.describe())
|
self.stdout.write(" - %s\n" % operation.describe())
|
||||||
if not self.dry_run:
|
if not self.dry_run:
|
||||||
|
|
Loading…
Reference in New Issue