diff options
Diffstat (limited to 'setuptools/command/easy_install.py')
-rwxr-xr-x | setuptools/command/easy_install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index 62b5cd70..9d61bb29 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -354,7 +354,7 @@ class easy_install(Command): "#!%(executable)s%(options)s\n" "# EASY-INSTALL-SCRIPT: %(spec)r,%(script_name)r\n" "import pkg_resources\n" - "pkg_resources.run_main(%(spec)r, %(script_name)r)\n" + "pkg_resources.run_script(%(spec)r, %(script_name)r)\n" ) % locals() if not self.dry_run: |