From 7663f9e4ffbba27c22698283ebf8891ca5ae2ae5 Mon Sep 17 00:00:00 2001 From: Alexandre Vassalotti Date: Thu, 15 May 2008 00:33:57 +0000 Subject: 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. --- Lib/distutils/command/upload.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/distutils/command/upload.py') 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 -- cgit v1.2.1