diff options
author | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-15 00:33:57 +0000 |
---|---|---|
committer | Alexandre Vassalotti <alexandre@peadrop.com> | 2008-05-15 00:33:57 +0000 |
commit | 7663f9e4ffbba27c22698283ebf8891ca5ae2ae5 (patch) | |
tree | e98e3fba9d0c292c4f46930df7920749ce5768ff /Lib/distutils/command/upload.py | |
parent | c92fef9a3ee7481596a18eaff3e12270f4355e2f (diff) | |
download | cpython-git-7663f9e4ffbba27c22698283ebf8891ca5ae2ae5.tar.gz |
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.
Diffstat (limited to 'Lib/distutils/command/upload.py')
-rw-r--r-- | Lib/distutils/command/upload.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/upload.py b/Lib/distutils/command/upload.py index ecc06f05ec..daf681128d 100644 --- a/Lib/distutils/command/upload.py +++ b/Lib/distutils/command/upload.py @@ -10,7 +10,7 @@ from hashlib import md5 import os import socket import platform -import configparser +import ConfigParser import httplib import base64 import urlparse |