diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-04-18 17:32:12 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-04-18 17:32:12 (GMT) |
commit | 584b0e0c3d27dc6b576366368bf7ca2f60e69e7c (patch) | |
tree | f2e33dbae88a59b367819920a5c4a2260f080788 /Lib/setuptools/command/install_scripts.py | |
parent | 17a35f906c29e71510d749283b381d95a5de0316 (diff) | |
download | cpython-584b0e0c3d27dc6b576366368bf7ca2f60e69e7c.zip cpython-584b0e0c3d27dc6b576366368bf7ca2f60e69e7c.tar.gz cpython-584b0e0c3d27dc6b576366368bf7ca2f60e69e7c.tar.bz2 |
Whilespace normalization (reindint.py).
Diffstat (limited to 'Lib/setuptools/command/install_scripts.py')
-rwxr-xr-x | Lib/setuptools/command/install_scripts.py | 32 |
1 files changed, 3 insertions, 29 deletions
diff --git a/Lib/setuptools/command/install_scripts.py b/Lib/setuptools/command/install_scripts.py index fc156dc..69558bf 100755 --- a/Lib/setuptools/command/install_scripts.py +++ b/Lib/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, @@ -54,29 +54,3 @@ class install_scripts(_install_scripts): os.chmod(target,0755) except (AttributeError, os.error): pass - - - - - - - - - - - - - - - - - - - - - - - - - - |