From: Georg Brandl Date: Mon, 8 Jun 2009 08:58:54 +0000 (+0000) Subject: Use boolean for another flag option. X-Git-Tag: v3.1rc2~42 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=472f2e22054a36cfe4331e474ab446f0a17888f7;p=thirdparty%2FPython%2Fcpython.git Use boolean for another flag option. --- diff --git a/Lib/logging/config.py b/Lib/logging/config.py index 93d68a3c37ad..07574d310a8c 100644 --- a/Lib/logging/config.py +++ b/Lib/logging/config.py @@ -49,7 +49,7 @@ else: # _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.