Author: russellm
Date: 2010-10-06 09:57:31 -0500 (Wed, 06 Oct 2010)
New Revision: 13988

Modified:
   django/trunk/docs/topics/logging.txt
Log:
Fixed #14397 -- Corrected some typos in the logging configuration example. 
Thanks to hunterford for the report.

Modified: django/trunk/docs/topics/logging.txt
===================================================================
--- django/trunk/docs/topics/logging.txt        2010-10-05 20:31:02 UTC (rev 
13987)
+++ django/trunk/docs/topics/logging.txt        2010-10-06 14:57:31 UTC (rev 
13988)
@@ -266,7 +266,7 @@
             },
             'mail_admins': {
                 'level': 'ERROR',
-                'class': 'django.utils.log.AdminEmailHandler'
+                'class': 'django.utils.log.AdminEmailHandler',
                 'filters': ['special']
             }
         },
@@ -282,7 +282,7 @@
                 'propagate': False,
             },
             'myproject.custom': {
-                'handlers: ['console', 'mail_admins'],
+                'handlers': ['console', 'mail_admins'],
                 'level': 'INFO',
                 'filters': ['special']
             }

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-upda...@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.

Reply via email to