mirror of https://github.com/django/django.git
Fix poor variable name (flake8 warning)
This commit is contained in:
parent
cbf8e8aa12
commit
4ca39684ee
|
@ -89,10 +89,10 @@ class Command(BaseCommand):
|
||||||
return
|
return
|
||||||
|
|
||||||
directory_created = {}
|
directory_created = {}
|
||||||
for app_label, migrations in changes.items():
|
for app_label, app_migrations in changes.items():
|
||||||
if self.verbosity >= 1:
|
if self.verbosity >= 1:
|
||||||
self.stdout.write(self.style.MIGRATE_HEADING("Migrations for '%s':" % app_label) + "\n")
|
self.stdout.write(self.style.MIGRATE_HEADING("Migrations for '%s':" % app_label) + "\n")
|
||||||
for migration in migrations:
|
for migration in app_migrations:
|
||||||
# Describe the migration
|
# Describe the migration
|
||||||
writer = MigrationWriter(migration)
|
writer = MigrationWriter(migration)
|
||||||
if self.verbosity >= 1:
|
if self.verbosity >= 1:
|
||||||
|
|
Loading…
Reference in New Issue