diff options
| author | Tim Graham <timograham@gmail.com> | 2016-12-12 09:38:13 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-12-12 09:38:13 -0500 |
| commit | 7a4e2fc5a2a6869089a79170e7d2903e1138bb2e (patch) | |
| tree | fc9c55ce4eb1f6f0c58d3f5029adee48949a8161 | |
| parent | ecd625e830ef765d5e60d5db7bc6e3b7ffc76d06 (diff) | |
Fixed #27588 -- Removed unneeded colon in makemigrations output.
| -rw-r--r-- | django/core/management/commands/makemigrations.py | 2 |
1 files changed, 1 insertions, 1 deletions
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: |
