diff options
author | Georg Brandl <georg@python.org> | 2008-05-25 07:25:25 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-05-25 07:25:25 (GMT) |
commit | 392c6fc02d90f211dadc72448a07d9281260cb70 (patch) | |
tree | 8cc4d563ee077ef83612a67a02ce36f5c2397d37 /Lib/distutils/command | |
parent | 995ee9dab0a89b139e08a55fc64a60aaddc0d5c0 (diff) | |
download | cpython-392c6fc02d90f211dadc72448a07d9281260cb70.zip cpython-392c6fc02d90f211dadc72448a07d9281260cb70.tar.gz cpython-392c6fc02d90f211dadc72448a07d9281260cb70.tar.bz2 |
ConfigParser renaming reversal part 3: move module into place and adapt imports.
Diffstat (limited to 'Lib/distutils/command')
-rw-r--r-- | Lib/distutils/command/upload.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Lib/distutils/command/upload.py b/Lib/distutils/command/upload.py index 92c4bf2..8805d41 100644 --- a/Lib/distutils/command/upload.py +++ b/Lib/distutils/command/upload.py @@ -14,11 +14,7 @@ import httplib import base64 import urlparse import cStringIO as StringIO -try: - from configparser import ConfigParser -except ImportError: - # For backward-compatibility with Python versions < 2.6. - from ConfigParser import ConfigParser +from ConfigParser import ConfigParser class upload(PyPIRCCommand): |