diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-08-05 23:57:22 +0200 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-08-05 23:57:22 +0200 |
commit | 8d09363e908c030761026e9400283db10213b625 (patch) | |
tree | a157324a5d7f9ce151e4503e82e6cc549e475bd1 /setuptools/command/easy_install.py | |
parent | 1c7102c9ffa7735769b90ab5c7d02357c6dfa41d (diff) | |
download | external_python_setuptools-8d09363e908c030761026e9400283db10213b625.tar.gz external_python_setuptools-8d09363e908c030761026e9400283db10213b625.tar.bz2 external_python_setuptools-8d09363e908c030761026e9400283db10213b625.zip |
Name variable for clarity
--HG--
extra : rebase_source : 6787fb9e99b28fa2d9504d18018878ccf193d521
Diffstat (limited to 'setuptools/command/easy_install.py')
-rwxr-xr-x | setuptools/command/easy_install.py | 3 |
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 |