Opened 14 years ago

Closed 14 years ago

#12984 closed (fixed)

type in signals documentation

Reported by: kcharvey Owned by: nobody
Component: Documentation Version: 1.1
Severity: Keywords:
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

http://docs.djangoproject.com/en/dev/ref/signals/#ref-signals Last line:

django.db.models.signals.post_save¶

Like pre_save, but sent at the end of the save() method.

Arguments sent with this signal:

sender

The model class.

instance

The actual instance being saved.

created

A boolean; True if a new record was create.

Attachments (1)

12984.diff (400 bytes ) - added by Tim Graham 14 years ago.

Download all attachments as: .zip

Change History (3)

by Tim Graham, 14 years ago

Attachment: 12984.diff added

comment:1 by Tim Graham, 14 years ago

Has patch: set
Triage Stage: UnreviewedReady for checkin

comment:2 by Russell Keith-Magee, 14 years ago

Resolution: fixed
Status: newclosed

(In [13210]) Fixed #12984 -- Corrected typo in signals docs. Thanks to kcharvey for the report.

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