[Python-checkins] r73289 - python/branches/py3k/Lib/logging/config.py
georg.brandl
python-checkins at python.org
Mon Jun 8 10:58:54 CEST 2009
Author: georg.brandl
Date: Mon Jun 8 10:58:54 2009
New Revision: 73289
Log:
Use boolean for another flag option.
Modified:
python/branches/py3k/Lib/logging/config.py
Modified: python/branches/py3k/Lib/logging/config.py
==============================================================================
--- python/branches/py3k/Lib/logging/config.py (original)
+++ python/branches/py3k/Lib/logging/config.py Mon Jun 8 10:58:54 2009
@@ -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.
More information about the Python-checkins
mailing list