Removed spurious print statement.

This commit is contained in:
Vinay Sajip 2010-02-04 20:18:28 +00:00
parent 85ee3e1b1e
commit 98ce620068

View file

@ -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)