summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2010-10-06 14:57:31 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2010-10-06 14:57:31 +0000
commit57aeb542792317df13c54eab7ceac73ceeb2847d (patch)
tree83dd437ecbda2338537a765ec052966c2c6c13b0 /docs
parent63d960ca2516753a1032d837d008f63a4786643d (diff)
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
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/logging.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/topics/logging.txt b/docs/topics/logging.txt
index cf5a6b0ed5..3d4dffe3e0 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']
}