From: Alexandre Vassalotti Date: Thu, 15 May 2008 20:30:56 +0000 (+0000) Subject: Revert r63323: Use lowercase version of module name. X-Git-Tag: v2.6b1~396 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3b46fcfb389af7e62e1e5ffdfde2880d6d99b2c6;p=python Revert r63323: Use lowercase version of module name. The distutils module should continue to use the old ConfigParser name, for backward-compatibility. --- diff --git a/Lib/distutils/config.py b/Lib/distutils/config.py index edba47f579..f1117beed1 100644 --- a/Lib/distutils/config.py +++ b/Lib/distutils/config.py @@ -5,7 +5,7 @@ that uses .pypirc in the distutils.command package. """ import os import sys -from configparser import ConfigParser +from ConfigParser import ConfigParser from distutils.cmd import Command