Django

Code

Changeset 2754

Show
Ignore:
Timestamp:
04/27/06 17:11:35 (2 years ago)
Author:
adrian
Message:

magic-removal: Fixed typo in QuerySet?.exclude() docstring

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/branches/magic-removal/django/db/models/query.py

    r2688 r2754  
    283283 
    284284    def exclude(self, *args, **kwargs): 
    285         "Returns a new QuerySet instance with NOT (arsg) ANDed to the existing set." 
     285        "Returns a new QuerySet instance with NOT (args) ANDed to the existing set." 
    286286        return self._filter_or_exclude(QNot, *args, **kwargs) 
    287287