From 24d7fe49332614fd838cbccdd2b8e8aad0d37a71 Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Mon, 19 Jun 2017 21:24:41 +0200 Subject: [PATCH] Refs #27858 -- Fixed typo in MigrationRecorder.applied_migrations() comment. --- django/db/migrations/recorder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()