[Python-checkins] r77969 - python/trunk/Lib/logging/config.py

vinay.sajip python-checkins at python.org
Thu Feb 4 21:18:29 CET 2010


Author: vinay.sajip
Date: Thu Feb  4 21:18:28 2010
New Revision: 77969

Log:
Removed spurious print statement.

Modified:
   python/trunk/Lib/logging/config.py

Modified: python/trunk/Lib/logging/config.py
==============================================================================
--- python/trunk/Lib/logging/config.py	(original)
+++ python/trunk/Lib/logging/config.py	Thu Feb  4 21:18:28 2010
@@ -65,7 +65,6 @@
     """
     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)


More information about the Python-checkins mailing list