diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2008-06-12 04:23:14 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2008-06-12 04:23:14 +0000 |
| commit | ac5b9f585735d49ac61e80cca7d977325c799beb (patch) | |
| tree | 47896a102a6cad950561c64d197fefde661a80e3 | |
| parent | acf888b4bafff0d6f92ef16d9ac4f904c3286e32 (diff) | |
Fixed #7427 -- Fixed docstring that was rendered incorrect due to qs-rf. Thanks, ramiro
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7624 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/db/backends/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/db/backends/__init__.py b/django/db/backends/__init__.py index 063c0ae411..b076e290dd 100644 --- a/django/db/backends/__init__.py +++ b/django/db/backends/__init__.py @@ -202,8 +202,8 @@ class BaseDatabaseOperations(object): def query_class(self, DefaultQueryClass): """ - Given the default QuerySet class, returns a custom QuerySet class - to use for this backend. Returns None if a custom QuerySet isn't used. + Given the default Query class, returns a custom Query class + to use for this backend. Returns None if a custom Query isn't used. See also BaseDatabaseFeatures.uses_custom_query_class, which regulates whether this method is called at all. """ |
