diff options
| author | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-15 20:30:56 (GMT) |
|---|---|---|
| committer | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-15 20:30:56 (GMT) |
| commit | 3b46fcfb389af7e62e1e5ffdfde2880d6d99b2c6 (patch) | |
| tree | 40b6cf5af1ef45247242e42a3a52ce4449391de4 | |
| parent | a5c3878b32bc006c6796fbdbabf7b210cc0cab86 (diff) | |
| download | cpython-3b46fcfb389af7e62e1e5ffdfde2880d6d99b2c6.zip cpython-3b46fcfb389af7e62e1e5ffdfde2880d6d99b2c6.tar.gz cpython-3b46fcfb389af7e62e1e5ffdfde2880d6d99b2c6.tar.bz2 | |
Revert r63323: Use lowercase version of module name.
The distutils module should continue to use the old ConfigParser name,
for backward-compatibility.
| -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 edba47f..f1117be 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 |
