Skip to content

Commit

Permalink
Refs #27858 -- Fixed typo in MigrationRecorder.applied_migrations() c…
Browse files Browse the repository at this point in the history
…omment.
  • Loading branch information
felixxm authored and timgraham committed Jun 19, 2017
1 parent 0b9ccf9 commit 24d7fe4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/db/migrations/recorder.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def applied_migrations(self):
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()

Expand Down

0 comments on commit 24d7fe4

Please sign in to comment.