diff options
| author | Frank Wiles <frank@revsys.com> | 2013-12-04 18:03:28 -0600 |
|---|---|---|
| committer | Frank Wiles <frank@revsys.com> | 2013-12-04 18:03:28 -0600 |
| commit | 164df40501d91ae8dd250700df15302c64001a69 (patch) | |
| tree | 6be256bab57f780a86f6b8bc374480edf9171d8b | |
| parent | 1864c6b5ad70c3c403bc5621fb5856a114a98845 (diff) | |
Fixing manager documentation inaccuracy
| -rw-r--r-- | docs/topics/db/managers.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/db/managers.txt b/docs/topics/db/managers.txt index c97149cfd1..3377bccab6 100644 --- a/docs/topics/db/managers.txt +++ b/docs/topics/db/managers.txt @@ -219,7 +219,7 @@ custom ``QuerySet`` if you also implement them on the ``Manager``:: class PersonManager(models.Manager): def get_queryset(self): - return PersonQuerySet() + return PersonQuerySet(self.model, using=self._db) def male(self): return self.get_queryset().male() |
