Commit 0d32bf35 authored by Jason R. Coombs's avatar Jason R. Coombs

Extract variable for exec_param

parent 7cf2343a
......@@ -30,7 +30,8 @@ class install_scripts(orig.install_scripts):
ei_cmd.egg_name, ei_cmd.egg_version,
)
bs_cmd = self.get_finalized_command('build_scripts')
cmd = ei.CommandSpec.from_param(getattr(bs_cmd, 'executable', None))
exec_param = getattr(bs_cmd, 'executable', None)
cmd = ei.CommandSpec.from_param(exec_param)
bw_cmd = self.get_finalized_command("bdist_wininst")
is_wininst = getattr(bw_cmd, '_is_running', False)
writer = ei.ScriptWriter
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment