Opened 10 years ago
Closed 10 years ago
#23729 closed Uncategorized (invalid)
Small error in documentation
Reported by: | sixpackistan | Owned by: | nobody |
---|---|---|---|
Component: | Documentation | Version: | 1.7 |
Severity: | Normal | Keywords: | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
class PersonQuerySet(models.QuerySet):
should be
class PersonQuerySet(query.QuerySet):
-Right?
Link: https://docs.djangoproject.com/en/1.7/topics/db/managers/
Note:
See TracTickets
for help on using tickets.
I believe you are using Django 1.6 or earlier as this code works on Django 1.7+.