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/

Change History (1)

comment:1 by Tim Graham, 10 years ago

Resolution: invalid
Status: newclosed

I believe you are using Django 1.6 or earlier as this code works on Django 1.7+.

Note: See TracTickets for help on using tickets.
Back to Top