summaryrefslogtreecommitdiffstats
path: root/Lib/logging
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-06-08 08:58:54 (GMT)
committerGeorg Brandl <georg@python.org>2009-06-08 08:58:54 (GMT)
commit472f2e22054a36cfe4331e474ab446f0a17888f7 (patch)
tree30ccf713a993e703f2d25169de4da8b551c2755e /Lib/logging
parent96f05e52a786331b73f75b33d1766c24b848f725 (diff)
downloadcpython-472f2e22054a36cfe4331e474ab446f0a17888f7.zip
cpython-472f2e22054a36cfe4331e474ab446f0a17888f7.tar.gz
cpython-472f2e22054a36cfe4331e474ab446f0a17888f7.tar.bz2
Use boolean for another flag option.
Diffstat (limited to 'Lib/logging')
-rw-r--r--Lib/logging/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/logging/config.py b/Lib/logging/config.py
index 93d68a3..07574d3 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.