From 62cb0be63b58782d90e74029056ce0fee5a8b9c7 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Thu, 27 Apr 2006 22:11:35 +0000 Subject: [PATCH] magic-removal: Fixed typo in QuerySet.exclude() docstring git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2754 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 f41a60c30e..edc16e6fc1 100644 --- a/django/db/models/query.py +++ b/django/db/models/query.py @@ -282,7 +282,7 @@ class QuerySet(object): return self._filter_or_exclude(Q, *args, **kwargs) def exclude(self, *args, **kwargs): - "Returns a new QuerySet instance with NOT (arsg) ANDed to the existing set." + "Returns a new QuerySet instance with NOT (args) ANDed to the existing set." return self._filter_or_exclude(QNot, *args, **kwargs) def _filter_or_exclude(self, qtype, *args, **kwargs):