Opened 53 minutes ago

Last modified 48 minutes ago

#37199 assigned Uncategorized

Typo in bulk_update() reference docs

Reported by: Tom Most Owned by: Tom Most
Component: Documentation Version: 6.0
Severity: Normal Keywords:
Cc: Tom Most Triage Stage: Unreviewed
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description

https://docs.djangoproject.com/en/6.0/ref/models/querysets/#bulk-update

This line:

    batch = Entry.objects.filter(ids__in=ids)

Should probably be:

    batch = Entry.objects.filter(id__in=ids)

Change History (1)

comment:1 by Tom Most, 48 minutes ago

Has patch: set
Owner: set to Tom Most
Status: newassigned
Note: See TracTickets for help on using tickets.
Back to Top