summaryrefslogtreecommitdiff
path: root/setuptools/command/easy_install.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2013-08-05 23:57:22 +0200
committerJason R. Coombs <jaraco@jaraco.com>2013-08-05 23:57:22 +0200
commitefd90898d1ab04916bd0c86120180d02f59e58d0 (patch)
tree97f7fa14a1e998cb8a10e30360379a20c297449d /setuptools/command/easy_install.py
parent77314d88e1eb543ad1fa71eafc49e142c6b2f863 (diff)
downloadpython-setuptools-bitbucket-efd90898d1ab04916bd0c86120180d02f59e58d0.tar.gz
Name variable for clarity
Diffstat (limited to 'setuptools/command/easy_install.py')
-rwxr-xr-xsetuptools/command/easy_install.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py
index fbf3245c..5066d666 100755
--- a/setuptools/command/easy_install.py
+++ b/setuptools/command/easy_install.py
@@ -1842,7 +1842,8 @@ class WindowsScriptWriter(ScriptWriter):
hdr = new_header
else:
hdr = header
- yield (name+ext, hdr+script_text, 't', [name+x for x in old])
+ blockers = [name+x for x in old]
+ yield (name+ext, hdr+script_text, 't', blockers)
yield (
name+'.exe', get_win_launcher(launcher_type),
'b' # write in binary mode