aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/develop.py
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2005-09-24 20:29:57 +0000
committerPJ Eby <distutils-sig@python.org>2005-09-24 20:29:57 +0000
commitad0eebab218118fa07e314032bd4097c44fc7eb2 (patch)
tree5436e1a34a5445df6d772a8bb9c73dc052bb620b /setuptools/command/develop.py
parent9159d6d8471cb8020cc870c8f5e549246c010f3f (diff)
downloadexternal_python_setuptools-ad0eebab218118fa07e314032bd4097c44fc7eb2.tar.gz
external_python_setuptools-ad0eebab218118fa07e314032bd4097c44fc7eb2.tar.bz2
external_python_setuptools-ad0eebab218118fa07e314032bd4097c44fc7eb2.zip
Support generating .pyw/.exe wrappers for Windows GUI scripts, and
"normal" #! wrappers for GUI scripts on other platforms. --HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041254
Diffstat (limited to 'setuptools/command/develop.py')
-rwxr-xr-xsetuptools/command/develop.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/develop.py b/setuptools/command/develop.py
index 24875467..f767ac4a 100755
--- a/setuptools/command/develop.py
+++ b/setuptools/command/develop.py
@@ -103,7 +103,7 @@ class develop(easy_install):
# create wrapper scripts in the script dir, pointing to dist.scripts
# new-style...
- self.install_console_scripts(dist)
+ self.install_wrapper_scripts(dist)
# ...and old-style
for script_name in self.distribution.scripts or []: