1
0
mirror of https://github.com/django/django.git synced 2025-10-26 23:26:08 +00:00

Fixed #26150 -- Sorted app_labels in migrate command output

This commit is contained in:
Markus Holtermann
2016-01-28 17:52:00 +11:00
parent 19d1cb1451
commit 4b0118465b
3 changed files with 4 additions and 4 deletions

View File

@@ -122,12 +122,12 @@ class Command(BaseCommand):
if run_syncdb:
self.stdout.write(
self.style.MIGRATE_LABEL(" Synchronize unmigrated apps: ") +
(", ".join(executor.loader.unmigrated_apps))
(", ".join(sorted(executor.loader.unmigrated_apps)))
)
if target_app_labels_only:
self.stdout.write(
self.style.MIGRATE_LABEL(" Apply all migrations: ") +
(", ".join(set(a for a, n in targets)) or "(none)")
(", ".join(sorted(set(a for a, n in targets))) or "(none)")
)
else:
if targets[0][1] is None: