Skip to content

Commit

Permalink
message string fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fevral13 authored and David-Wobrock committed Feb 3, 2019
1 parent 6cdc947 commit fbf0f44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_migration_linter/operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit fbf0f44

Please sign in to comment.