diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2017-06-19 21:24:41 +0200 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-06-19 15:24:41 -0400 |
| commit | 24d7fe49332614fd838cbccdd2b8e8aad0d37a71 (patch) | |
| tree | 419f16a1c7920b961175dc1f0186b63cf9804d5d | |
| parent | 0b9ccf9e607e31a056f9e0a41f3f79aefeff2e9d (diff) | |
Refs #27858 -- Fixed typo in MigrationRecorder.applied_migrations() comment.
| -rw-r--r-- | django/db/migrations/recorder.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/migrations/recorder.py b/django/db/migrations/recorder.py index 2a3ff8bb99..3a972fe4c6 100644 --- a/django/db/migrations/recorder.py +++ b/django/db/migrations/recorder.py @@ -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() |
