aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/easy_install.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2011-08-01 04:38:03 -0400
committerJason R. Coombs <jaraco@jaraco.com>2011-08-01 04:38:03 -0400
commit9b09f6d159a7d5f4ffeaf9de4710ee869258fed7 (patch)
tree0245a63e36ae4c38b52574cbd546290bd1510d27 /setuptools/command/easy_install.py
parentb4aecb449c912f0b405c687c763b9976c4cd884d (diff)
downloadexternal_python_setuptools-9b09f6d159a7d5f4ffeaf9de4710ee869258fed7.tar.gz
external_python_setuptools-9b09f6d159a7d5f4ffeaf9de4710ee869258fed7.tar.bz2
external_python_setuptools-9b09f6d159a7d5f4ffeaf9de4710ee869258fed7.zip
Corrected ValueError introduced in the last commit due to incorrect use of arg unpacking
--HG-- branch : distribute extra : rebase_source : 0ebd905145e32bf072c00bc663dde8716ad4b88a
Diffstat (limited to 'setuptools/command/easy_install.py')
-rwxr-xr-xsetuptools/command/easy_install.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py
index c1bae1c0..f44e8d4a 100755
--- a/setuptools/command/easy_install.py
+++ b/setuptools/command/easy_install.py
@@ -1429,7 +1429,7 @@ def extract_wininst_cfg(dist_filename):
# part is in bytes, but we need to read up to the first null
# byte.
null_byte = bytes([0]) if sys.version_info >= (2,6) else chr(0)
- config, = part.split(null_byte, 1)
+ config = part.split(null_byte, 1)[0]
# Now the config is in bytes, but on Python 3, it must be
# unicode for the RawConfigParser, so decode it. Is this the
# right encoding?