From ea72e272a677365a60f1c412f91ebfac58ba13bb Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Mon, 14 Jun 2010 18:11:52 +0200 Subject: [PATCH] Fixed a broken example --- docs/errorhandling.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/errorhandling.rst b/docs/errorhandling.rst index ae292a1a..cc7437a6 100644 --- a/docs/errorhandling.rst +++ b/docs/errorhandling.rst @@ -151,7 +151,7 @@ File logging from logging import Formatter file_handler.setFormatter(Formatter( - '%(astime)s %(levelname)s: %(message)s ' + '%(asctime)s %(levelname)s: %(message)s ' '[in %(pathname)s:%(lineno)d]' ))