From 2402e93c41173c357b5b19349cfa5753e89248a9 Mon Sep 17 00:00:00 2001 From: Alexandre Vassalotti Date: Thu, 15 May 2008 20:13:54 +0000 Subject: [PATCH] Fixed another missed ConfigParser import rename. --- Lib/distutils/command/register.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/distutils/command/register.py b/Lib/distutils/command/register.py index 40d9f20d1a..b6a36f5bfe 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 * -- 2.40.0