]> granicus.if.org Git - python/commitdiff
Use boolean for another flag option.
authorGeorg Brandl <georg@python.org>
Mon, 8 Jun 2009 08:58:54 +0000 (08:58 +0000)
committerGeorg Brandl <georg@python.org>
Mon, 8 Jun 2009 08:58:54 +0000 (08:58 +0000)
Lib/logging/config.py

index 93d68a3c37ad6bb505eabaf9005a5c7290bc6b6b..07574d310a8c9405319f74c697cc7a3e18f5b0b2 100644 (file)
@@ -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.