[Python-3000-checkins] r63325 - python/branches/py3k/Lib/distutils/command/register.py

alexandre.vassalotti python-3000-checkins at python.org
Thu May 15 22:13:54 CEST 2008


Author: alexandre.vassalotti
Date: Thu May 15 22:13:54 2008
New Revision: 63325

Log:
Fixed another missed ConfigParser import rename.


Modified:
   python/branches/py3k/Lib/distutils/command/register.py

Modified: python/branches/py3k/Lib/distutils/command/register.py
==============================================================================
--- python/branches/py3k/Lib/distutils/command/register.py	(original)
+++ python/branches/py3k/Lib/distutils/command/register.py	Thu May 15 22:13:54 2008
@@ -8,7 +8,7 @@
 __revision__ = "$Id$"
 
 import os, string, urllib2, getpass, urlparse
-import io, ConfigParser
+import io, configparser
 
 from distutils.core import Command
 from distutils.errors import *


More information about the Python-3000-checkins mailing list