Commit 98ce6200 authored by Vinay Sajip's avatar Vinay Sajip

Removed spurious print statement.

parent 85ee3e1b
...@@ -65,7 +65,6 @@ def fileConfig(fname, defaults=None, disable_existing_loggers=True): ...@@ -65,7 +65,6 @@ def fileConfig(fname, defaults=None, disable_existing_loggers=True):
""" """
import ConfigParser import ConfigParser
print >> open('/tmp/tmp.txt', 'w'), fname.getvalue()
cp = ConfigParser.ConfigParser(defaults) cp = ConfigParser.ConfigParser(defaults)
if hasattr(cp, 'readfp') and hasattr(fname, 'readline'): if hasattr(cp, 'readfp') and hasattr(fname, 'readline'):
cp.readfp(fname) cp.readfp(fname)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment