mirror of https://github.com/django/django.git
Merge pull request #2030 from frankwiles/master
Fixed manager documentation inaccuracy
This commit is contained in:
commit
8209906a0e
|
@ -219,7 +219,7 @@ custom ``QuerySet`` if you also implement them on the ``Manager``::
|
||||||
|
|
||||||
class PersonManager(models.Manager):
|
class PersonManager(models.Manager):
|
||||||
def get_queryset(self):
|
def get_queryset(self):
|
||||||
return PersonQuerySet()
|
return PersonQuerySet(self.model, using=self._db)
|
||||||
|
|
||||||
def male(self):
|
def male(self):
|
||||||
return self.get_queryset().male()
|
return self.get_queryset().male()
|
||||||
|
|
Loading…
Reference in New Issue