Revert r63323: Use lowercase version of module name.

The distutils module should continue to use the old ConfigParser name,
for backward-compatibility.
This commit is contained in:
Alexandre Vassalotti 2008-05-15 20:30:56 +00:00
parent a5c3878b32
commit 3b46fcfb38
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ that uses .pypirc in the distutils.command package.
"""
import os
import sys
from configparser import ConfigParser
from ConfigParser import ConfigParser
from distutils.cmd import Command