From: Alexandre Vassalotti Date: Thu, 15 May 2008 20:13:54 +0000 (+0000) Subject: Fixed another missed ConfigParser import rename. X-Git-Tag: v3.0b1~319 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2402e93c41173c357b5b19349cfa5753e89248a9;p=thirdparty%2FPython%2Fcpython.git Fixed another missed ConfigParser import rename. --- diff --git a/Lib/distutils/command/register.py b/Lib/distutils/command/register.py index 40d9f20d1a12..b6a36f5bfed3 100644 --- a/Lib/distutils/command/register.py +++ b/Lib/distutils/command/register.py @@ -8,7 +8,7 @@ Implements the Distutils 'register' command (register with the repository). __revision__ = "$Id$" import os, string, urllib2, getpass, urlparse -import io, ConfigParser +import io, configparser from distutils.core import Command from distutils.errors import *