summaryrefslogtreecommitdiff
path: root/setuptools/command/install_scripts.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2015-01-04 17:14:11 -0500
committerJason R. Coombs <jaraco@jaraco.com>2015-01-04 17:14:11 -0500
commit261d57232c74954468688a76aab2caea80ed42fc (patch)
tree164a48eabac4b97dd2d90eab6ceb1faca420c959 /setuptools/command/install_scripts.py
parentc3beddd034239005c98f7285a2936c513c5a81be (diff)
downloadpython-setuptools-git-261d57232c74954468688a76aab2caea80ed42fc.tar.gz
Rename _gen_args to get_args (for consistency).
Diffstat (limited to 'setuptools/command/install_scripts.py')
-rwxr-xr-xsetuptools/command/install_scripts.py2
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):