From 3b46fcfb389af7e62e1e5ffdfde2880d6d99b2c6 Mon Sep 17 00:00:00 2001 From: Alexandre Vassalotti Date: Thu, 15 May 2008 20:30:56 +0000 Subject: [PATCH] Revert r63323: Use lowercase version of module name. The distutils module should continue to use the old ConfigParser name, for backward-compatibility. --- Lib/distutils/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/distutils/config.py b/Lib/distutils/config.py index edba47f579d..f1117beed15 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