diff options
-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 |