From fbf0f4419336fcb1235fa57f5575ad2593354e44 Mon Sep 17 00:00:00 2001 From: Serj Zavadsky Date: Wed, 30 Jan 2019 09:42:09 +0100 Subject: [PATCH] message string fix --- django_migration_linter/operations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django_migration_linter/operations.py b/django_migration_linter/operations.py index 883355d1..e8e4bf17 100644 --- a/django_migration_linter/operations.py +++ b/django_migration_linter/operations.py @@ -30,7 +30,7 @@ def database_forwards(self, app_label, schema_editor, from_state, to_state): schema_editor.execute(IGNORE_MIGRATION_SQL) def database_backwards(self, app_label, schema_editor, from_state, to_state): - schema_editor.execute(IGNORE_MIGRATION_SQL + "(reversed)") + schema_editor.execute(IGNORE_MIGRATION_SQL + " (reversed)") def describe(self): return "The Django migration linter will ignore this migration"