aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/easy_install.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2015-05-27 18:12:23 -0400
committerJason R. Coombs <jaraco@jaraco.com>2015-05-27 18:12:23 -0400
commit16da5eac3a04bc4224082ee54f5f0f5b1c8d92db (patch)
treec03f6484e4673c64888d850eb202be72f9660236 /setuptools/command/easy_install.py
parent1f7177fc0f54fac1d76ee8a1c77f93cb2f6f7dc1 (diff)
downloadexternal_python_setuptools-16da5eac3a04bc4224082ee54f5f0f5b1c8d92db.tar.gz
external_python_setuptools-16da5eac3a04bc4224082ee54f5f0f5b1c8d92db.tar.bz2
external_python_setuptools-16da5eac3a04bc4224082ee54f5f0f5b1c8d92db.zip
extract variable for nicer indentation
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