summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command
diff options
context:
space:
mode:
authorAlexandre Vassalotti <alexandre@peadrop.com>2008-05-15 00:33:57 (GMT)
committerAlexandre Vassalotti <alexandre@peadrop.com>2008-05-15 00:33:57 (GMT)
commit7663f9e4ffbba27c22698283ebf8891ca5ae2ae5 (patch)
treee98e3fba9d0c292c4f46930df7920749ce5768ff /Lib/distutils/command
parentc92fef9a3ee7481596a18eaff3e12270f4355e2f (diff)
downloadcpython-7663f9e4ffbba27c22698283ebf8891ca5ae2ae5.zip
cpython-7663f9e4ffbba27c22698283ebf8891ca5ae2ae5.tar.gz
cpython-7663f9e4ffbba27c22698283ebf8891ca5ae2ae5.tar.bz2
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')
-rw-r--r--Lib/distutils/command/upload.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/upload.py b/Lib/distutils/command/upload.py
index ecc06f0..daf6811 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