diff options
author | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-15 20:30:56 +0000 |
---|---|---|
committer | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-15 20:30:56 +0000 |
commit | c24608e877d4b6763386714cbffae081842293c6 (patch) | |
tree | 74b579b2ac72ab25aede8d1f79628dbf1af83fc5 /Lib/distutils | |
parent | c03691f435947c3e953ce721eddb61c1896f23c1 (diff) | |
download | cpython-c24608e877d4b6763386714cbffae081842293c6.tar.gz |
Revert r63323: Use lowercase version of module name.
The distutils module should continue to use the old ConfigParser name,
for backward-compatibility.
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/config.py b/Lib/distutils/config.py index edba47f579..f1117beed1 100644 --- a/Lib/distutils/config.py +++ b/Lib/distutils/config.py @@ -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 |