diff options
author | tarek <none@none> | 2009-10-27 09:30:16 +0100 |
---|---|---|
committer | tarek <none@none> | 2009-10-27 09:30:16 +0100 |
commit | 9d29ae853126d08c8779e7e158905ae263d6f52a (patch) | |
tree | a158176298bcd2c0099f25146c9f9ebf702146d4 /setuptools/command/install_scripts.py | |
parent | 5c93394f676cc340e8b2606a4fc6aa183f65b108 (diff) | |
download | external_python_setuptools-9d29ae853126d08c8779e7e158905ae263d6f52a.tar.gz external_python_setuptools-9d29ae853126d08c8779e7e158905ae263d6f52a.tar.bz2 external_python_setuptools-9d29ae853126d08c8779e7e158905ae263d6f52a.zip |
removed PJE-style white lines
--HG--
branch : distribute
extra : rebase_source : b6f2b1983aa0e5994df5a29688348929fcd20628
Diffstat (limited to 'setuptools/command/install_scripts.py')
-rwxr-xr-x | setuptools/command/install_scripts.py | 38 |
1 files changed, 3 insertions, 35 deletions
diff --git a/setuptools/command/install_scripts.py b/setuptools/command/install_scripts.py index c2dc2d59..b1186dba 100755 --- a/setuptools/command/install_scripts.py +++ b/setuptools/command/install_scripts.py @@ -11,7 +11,7 @@ class install_scripts(_install_scripts): def initialize_options(self): _install_scripts.initialize_options(self) self.no_ep = False - + def run(self): self.run_command("egg_info") if self.distribution.scripts: @@ -20,9 +20,9 @@ class install_scripts(_install_scripts): self.outfiles = [] if self.no_ep: # don't install entry point scripts into .egg file! - return + return - ei_cmd = self.get_finalized_command("egg_info") + ei_cmd = self.get_finalized_command("egg_info") dist = Distribution( ei_cmd.egg_base, PathMetadata(ei_cmd.egg_base, ei_cmd.egg_info), ei_cmd.egg_name, ei_cmd.egg_version, @@ -35,10 +35,6 @@ class install_scripts(_install_scripts): for args in get_script_args(dist, executable, is_wininst): self.write_script(*args) - - - - def write_script(self, script_name, contents, mode="t", *ignored): """Write an executable file to the scripts directory""" log.info("Installing %s script to %s", script_name, self.install_dir) @@ -52,31 +48,3 @@ class install_scripts(_install_scripts): f.close() chmod(target,0755) - - - - - - - - - - - - - - - - - - - - - - - - - - - - |