From 57aeb542792317df13c54eab7ceac73ceeb2847d Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Wed, 6 Oct 2010 14:57:31 +0000 Subject: [PATCH] Fixed #14397 -- Corrected some typos in the logging configuration example. Thanks to hunterford for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13988 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/topics/logging.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/topics/logging.txt b/docs/topics/logging.txt index cf5a6b0ed53..3d4dffe3e08 100644 --- a/docs/topics/logging.txt +++ b/docs/topics/logging.txt @@ -266,7 +266,7 @@ complex logging setup, configured using :meth:`logging.dictConfig`:: }, 'mail_admins': { 'level': 'ERROR', - 'class': 'django.utils.log.AdminEmailHandler' + 'class': 'django.utils.log.AdminEmailHandler', 'filters': ['special'] } }, @@ -282,7 +282,7 @@ complex logging setup, configured using :meth:`logging.dictConfig`:: 'propagate': False, }, 'myproject.custom': { - 'handlers: ['console', 'mail_admins'], + 'handlers': ['console', 'mail_admins'], 'level': 'INFO', 'filters': ['special'] }