summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexandre Vassalotti <alexandre@peadrop.com>2008-05-15 20:13:54 (GMT)
committerAlexandre Vassalotti <alexandre@peadrop.com>2008-05-15 20:13:54 (GMT)
commit2402e93c41173c357b5b19349cfa5753e89248a9 (patch)
treee19496ff0a56ca252d338b6ef6cdb98794831220
parentf99fc8a7611ed8f55a67c037ccf966972cc9a918 (diff)
downloadcpython-2402e93c41173c357b5b19349cfa5753e89248a9.zip
cpython-2402e93c41173c357b5b19349cfa5753e89248a9.tar.gz
cpython-2402e93c41173c357b5b19349cfa5753e89248a9.tar.bz2
Fixed another missed ConfigParser import rename.
-rw-r--r--Lib/distutils/command/register.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/register.py b/Lib/distutils/command/register.py
index 40d9f20..b6a36f5 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 *