From 472f2e22054a36cfe4331e474ab446f0a17888f7 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Mon, 8 Jun 2009 08:58:54 +0000 Subject: [PATCH] Use boolean for another flag option. --- Lib/logging/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/logging/config.py b/Lib/logging/config.py index 93d68a3c37a..07574d310a8 100644 --- a/Lib/logging/config.py +++ b/Lib/logging/config.py @@ -49,7 +49,7 @@ # _listener holds the server object doing the listening _listener = None -def fileConfig(fname, defaults=None, disable_existing_loggers=1): +def fileConfig(fname, defaults=None, disable_existing_loggers=True): """ Read the logging configuration from a ConfigParser-format file.