Opened 14 years ago

Closed 14 years ago

#14397 closed (fixed)

Missing ending quotation in logging documentation

Reported by: Hunter Ford Owned by: nobody
Component: Documentation Version: 1.2
Severity: 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

The logging documentation contains a missing ending quotation mark in the example code snippet located at: http://docs.djangoproject.com/en/dev/topics/logging/

Line 46 of the configuration example:

            'handlers: ['console', 'mail_admins'],

should be changed to:

            'handlers': ['console', 'mail_admins'],

Keep up the good work!

Change History (2)

comment:1 by Hunter Ford, 14 years ago

There's also a missing comma on line 30:

            'class': 'django.utils.log.AdminEmailHandler'

should become:

            'class': 'django.utils.log.AdminEmailHandler',

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

Resolution: fixed
Status: newclosed

(In [13988]) Fixed #14397 -- Corrected some typos in the logging configuration example. Thanks to hunterford for the report.

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