From 570c12aeb8812753c61a9d5f247f09822bda91d2 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Fri, 21 Mar 2008 16:09:41 +0000 Subject: [PATCH] queryset-refactor: People are getting picky about my spelling. git-svn-id: http://code.djangoproject.com/svn/django/branches/queryset-refactor@7346 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/db/models/query.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/db/models/query.py b/django/db/models/query.py index 1cc3bbeec4..994425272b 100644 --- a/django/db/models/query.py +++ b/django/db/models/query.py @@ -120,7 +120,7 @@ class _QuerySet(object): def _merge_sanity_check(self, other): """ - Checks that we are merging two comparable queyrset classes. + Checks that we are merging two comparable queryset classes. """ if self.__class__ is not other.__class__: raise TypeError("Cannot merge querysets of different types ('%s' and '%s'."