diff options
| author | Andrew Godwin <andrew@aeracode.org> | 2014-01-08 13:00:12 +0000 |
|---|---|---|
| committer | Andrew Godwin <andrew@aeracode.org> | 2014-01-08 13:00:12 +0000 |
| commit | 64887c644a8fe1004a15e27087d4e27c95c90fcd (patch) | |
| tree | a0b78654bab7b23efe743a65eafb780847faac90 /tests/migrations/test_migrations | |
| parent | 0423e0796a75db8226e2032083ce6c674da337dc (diff) | |
| download | django-64887c644a8fe1004a15e27087d4e27c95c90fcd.tar.gz | |
Fixed #21142: Dependency failures on unmigrated apps.
Diffstat (limited to 'tests/migrations/test_migrations')
| -rw-r--r-- | tests/migrations/test_migrations/0002_second.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/migrations/test_migrations/0002_second.py b/tests/migrations/test_migrations/0002_second.py index ace9a83347..736e844825 100644 --- a/tests/migrations/test_migrations/0002_second.py +++ b/tests/migrations/test_migrations/0002_second.py @@ -3,7 +3,9 @@ from django.db import migrations, models class Migration(migrations.Migration): - dependencies = [("migrations", "0001_initial")] + dependencies = [ + ("migrations", "0001_initial"), + ] operations = [ |
