[Python-checkins] r63323 - python/trunk/Lib/distutils/config.py

andrew.kuchling python-checkins at python.org
Thu May 15 22:06:51 CEST 2008


Author: andrew.kuchling
Date: Thu May 15 22:06:51 2008
New Revision: 63323

Log:
Use lowercase version of module name

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

Modified: python/trunk/Lib/distutils/config.py
==============================================================================
--- python/trunk/Lib/distutils/config.py	(original)
+++ python/trunk/Lib/distutils/config.py	Thu May 15 22:06:51 2008
@@ -5,7 +5,7 @@
 """
 import os
 import sys
-from ConfigParser import ConfigParser
+from configparser import ConfigParser
 
 from distutils.core import Command
 


More information about the Python-checkins mailing list