diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2010-02-04 20:18:28 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2010-02-04 20:18:28 (GMT) |
commit | 98ce620068c7f164f5a1d95749c7a7d359cc5921 (patch) | |
tree | 222d2f95143da121571c42a937cc3c75852ffc0d | |
parent | 85ee3e1b1ed9b7480966f00f0629153127b19ca6 (diff) | |
download | cpython-98ce620068c7f164f5a1d95749c7a7d359cc5921.zip cpython-98ce620068c7f164f5a1d95749c7a7d359cc5921.tar.gz cpython-98ce620068c7f164f5a1d95749c7a7d359cc5921.tar.bz2 |
Removed spurious print statement.
-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 0dbcd8f..d7f7481 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) |