Refs #27858 -- Fixed typo in MigrationRecorder.applied_migrations() comment.

This commit is contained in:
Mariusz Felisiak 2017-06-19 21:24:41 +02:00 committed by Tim Graham
parent 0b9ccf9e60
commit 24d7fe4933
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ class MigrationRecorder:
if self.has_table():
return {tuple(x) for x in self.migration_qs.values_list('app', 'name')}
else:
# If the django_migrations table doesn't eixst, then no migrations
# If the django_migrations table doesn't exist, then no migrations
# are applied.
return set()