Django

Code

Changeset 7624

Show
Ignore:
Timestamp:
06/11/08 23:23:14 (7 months ago)
Author:
adrian
Message:

Fixed #7427 -- Fixed docstring that was rendered incorrect due to qs-rf. Thanks, ramiro

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/db/backends/__init__.py

    r7496 r7624  
    203203    def query_class(self, DefaultQueryClass): 
    204204        """ 
    205         Given the default QuerySet class, returns a custom QuerySet class 
    206         to use for this backend. Returns None if a custom QuerySet isn't used. 
     205        Given the default Query class, returns a custom Query class 
     206        to use for this backend. Returns None if a custom Query isn't used. 
    207207        See also BaseDatabaseFeatures.uses_custom_query_class, which regulates 
    208208        whether this method is called at all.