aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/easy_install.py
diff options
context:
space:
mode:
Diffstat (limited to 'setuptools/command/easy_install.py')
-rwxr-xr-xsetuptools/command/easy_install.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py
index 74803b59..515c89d5 100755
--- a/setuptools/command/easy_install.py
+++ b/setuptools/command/easy_install.py
@@ -2024,8 +2024,8 @@ class ScriptWriter(object):
group = type_ + '_scripts'
for name, ep in dist.get_entry_map(group).items():
script_text = cls.template % locals()
- for res in cls._get_script_args(type_, name, header,
- script_text):
+ args = cls._get_script_args(type_, name, header, script_text)
+ for res in args:
yield res
@classmethod