diff options
author | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-15 20:13:54 (GMT) |
---|---|---|
committer | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-15 20:13:54 (GMT) |
commit | 2402e93c41173c357b5b19349cfa5753e89248a9 (patch) | |
tree | e19496ff0a56ca252d338b6ef6cdb98794831220 | |
parent | f99fc8a7611ed8f55a67c037ccf966972cc9a918 (diff) | |
download | cpython-2402e93c41173c357b5b19349cfa5753e89248a9.zip cpython-2402e93c41173c357b5b19349cfa5753e89248a9.tar.gz cpython-2402e93c41173c357b5b19349cfa5753e89248a9.tar.bz2 |
Fixed another missed ConfigParser import rename.
-rw-r--r-- | Lib/distutils/command/register.py | 2 |
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 * |