diff options
Diffstat (limited to 'Lib/logging/config.py')
-rw-r--r-- | Lib/logging/config.py | 1 |
1 files changed, 0 insertions, 1 deletions
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) |