From: Andrew M. Kuchling Date: Thu, 15 May 2008 20:06:51 +0000 (+0000) Subject: Use lowercase version of module name X-Git-Tag: v2.6b1~398 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e00aeccf2e545313061720062354797e102d859e;p=thirdparty%2FPython%2Fcpython.git Use lowercase version of module name --- diff --git a/Lib/distutils/config.py b/Lib/distutils/config.py index cf547698a90f..e9ba40260caf 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.core import Command