diff options
author | Tim Graham <timograham@gmail.com> | 2016-02-05 13:53:03 -0500 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2016-02-05 15:11:07 -0500 |
commit | 406675b1a03c0568f7768a73e7c279011e56054d (patch) | |
tree | 092da11ce8e2773a29576b2d937e188c7a46621d /tests/migrations/test_writer.py | |
parent | 275314512d7dd10065026f02f61931e4c62c9cc8 (diff) | |
download | django-26176.tar.gz |
Fixed #26176 -- Fixed E123 flake8 warnings.26176
Diffstat (limited to 'tests/migrations/test_writer.py')
-rw-r--r-- | tests/migrations/test_writer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/migrations/test_writer.py b/tests/migrations/test_writer.py index 03dd5f7ed3..6c121e0904 100644 --- a/tests/migrations/test_writer.py +++ b/tests/migrations/test_writer.py @@ -625,7 +625,7 @@ class WriterTests(SimpleTestCase): migrations.AlterModelOptions( name='model', options={'verbose_name': 'model', 'verbose_name_plural': 'models'}, - ), + ), ] }) writer = MigrationWriter(migration) |