commit | 7663f9e4ffbba27c22698283ebf8891ca5ae2ae5 | [log] [tgz] |
---|---|---|
author | Alexandre Vassalotti <alexandre@peadrop.com> | Thu May 15 00:33:57 2008 +0000 |
committer | Alexandre Vassalotti <alexandre@peadrop.com> | Thu May 15 00:33:57 2008 +0000 |
tree | e98e3fba9d0c292c4f46930df7920749ce5768ff | |
parent | c92fef9a3ee7481596a18eaff3e12270f4355e2f [diff] [blame] |
Revert distutils changes done in r63248. As explained by Marc-Andre Lemburg, distutils needs to stay backward-compatible. Therefore, it should use the old ConfigParser module name.
diff --git a/Lib/distutils/config.py b/Lib/distutils/config.py index e9ba402..cf54769 100644 --- a/Lib/distutils/config.py +++ b/Lib/distutils/config.py
@@ -5,7 +5,7 @@ """ import os import sys -from configparser import ConfigParser +from ConfigParser import ConfigParser from distutils.core import Command