mirror of
https://github.com/django/django.git
synced 2025-07-04 17:59:13 +00:00
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
This commit is contained in:
parent
ad8faa7e94
commit
62cb0be63b
@ -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):
|
||||
|
Loading…
x
Reference in New Issue
Block a user