[Python-checkins] r60745 - python/trunk/Lib/idlelib/configHandler.py

kurt.kaiser python-checkins at python.org
Tue Feb 12 16:45:51 CET 2008


Author: kurt.kaiser
Date: Tue Feb 12 16:45:50 2008
New Revision: 60745

Modified:
   python/trunk/Lib/idlelib/configHandler.py
Log:
what??! Correct r60225.


Modified: python/trunk/Lib/idlelib/configHandler.py
==============================================================================
--- python/trunk/Lib/idlelib/configHandler.py	(original)
+++ python/trunk/Lib/idlelib/configHandler.py	Tue Feb 12 16:45:50 2008
@@ -143,7 +143,7 @@
             try:
                 cfgFile = open(fname, 'w')
             except IOError:
-                fname.unlink()
+                os.unlink(fname)
                 cfgFile = open(fname, 'w')
             self.write(cfgFile)
         else:


More information about the Python-checkins mailing list