From 98ce620068c7f164f5a1d95749c7a7d359cc5921 Mon Sep 17 00:00:00 2001 From: Vinay Sajip Date: Thu, 4 Feb 2010 20:18:28 +0000 Subject: [PATCH] Removed spurious print statement. --- Lib/logging/config.py | 1 - 1 file changed, 1 deletion(-) diff --git a/Lib/logging/config.py b/Lib/logging/config.py index 0dbcd8f763..d7f7481fe8 100644 --- a/Lib/logging/config.py +++ b/Lib/logging/config.py @@ -65,7 +65,6 @@ def fileConfig(fname, defaults=None, disable_existing_loggers=True): """ import ConfigParser - print >> open('/tmp/tmp.txt', 'w'), fname.getvalue() cp = ConfigParser.ConfigParser(defaults) if hasattr(cp, 'readfp') and hasattr(fname, 'readline'): cp.readfp(fname) -- 2.40.0