summaryrefslogtreecommitdiffstats
path: root/Lib/setuptools/command/install_scripts.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2006-04-18 17:32:12 (GMT)
committerTim Peters <tim.peters@gmail.com>2006-04-18 17:32:12 (GMT)
commit584b0e0c3d27dc6b576366368bf7ca2f60e69e7c (patch)
treef2e33dbae88a59b367819920a5c4a2260f080788 /Lib/setuptools/command/install_scripts.py
parent17a35f906c29e71510d749283b381d95a5de0316 (diff)
downloadcpython-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-xLib/setuptools/command/install_scripts.py32
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
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-