diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-04 17:14:11 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-04 17:14:11 -0500 |
commit | 261d57232c74954468688a76aab2caea80ed42fc (patch) | |
tree | 164a48eabac4b97dd2d90eab6ceb1faca420c959 /setuptools/command/install_scripts.py | |
parent | c3beddd034239005c98f7285a2936c513c5a81be (diff) | |
download | python-setuptools-git-261d57232c74954468688a76aab2caea80ed42fc.tar.gz |
Rename _gen_args to get_args (for consistency).
Diffstat (limited to 'setuptools/command/install_scripts.py')
-rwxr-xr-x | setuptools/command/install_scripts.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/install_scripts.py b/setuptools/command/install_scripts.py index 138e4ea2..1717e1cf 100755 --- a/setuptools/command/install_scripts.py +++ b/setuptools/command/install_scripts.py @@ -39,7 +39,7 @@ class install_scripts(orig.install_scripts): executable = "python.exe" writer = ScriptWriter.get_writer(force_windows=is_wininst) header = ScriptWriter.get_header("", nt_quote_arg(executable)) - for args in writer._gen_args(dist, header): + for args in writer.get_args(dist, header): self.write_script(*args) def write_script(self, script_name, contents, mode="t", *ignored): |