diff options
author | Fred Drake <fdrake@acm.org> | 2001-12-06 21:01:19 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-12-06 21:01:19 (GMT) |
commit | 21d45356b8a22bb3091a97f50b919b57798675f5 (patch) | |
tree | bdfd02aba3e9f0a243296721cb8ec2c75be9c08a /Lib/distutils/command/install.py | |
parent | b94b849d65af71b4b432a74fdaef8ccd88209cc0 (diff) | |
download | cpython-21d45356b8a22bb3091a97f50b919b57798675f5.zip cpython-21d45356b8a22bb3091a97f50b919b57798675f5.tar.gz cpython-21d45356b8a22bb3091a97f50b919b57798675f5.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/distutils/command/install.py')
-rw-r--r-- | Lib/distutils/command/install.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py index 022e34a..8755a14 100644 --- a/Lib/distutils/command/install.py +++ b/Lib/distutils/command/install.py @@ -110,7 +110,7 @@ class install (Command): ('optimize=', 'O', "also compile with optimization: -O1 for \"python -O\", " "-O2 for \"python -OO\", and -O0 to disable [default: -O0]"), - + # Miscellaneous control options ('force', 'f', "force installation (overwrite any existing files)"), @@ -305,7 +305,7 @@ class install (Command): self.install_lib = self.install_platlib else: self.install_lib = self.install_purelib - + # Convert directories from Unix /-separated syntax to the local # convention. @@ -353,7 +353,7 @@ class install (Command): def finalize_unix (self): - + if self.install_base is not None or self.install_platbase is not None: if ((self.install_lib is None and self.install_purelib is None and @@ -426,7 +426,7 @@ class install (Command): def expand_basedirs (self): self._expand_attrs(['install_base', 'install_platbase', - 'root']) + 'root']) def expand_dirs (self): self._expand_attrs(['install_purelib', @@ -550,7 +550,7 @@ class install (Command): if self.path_file and self.install_path_file: outputs.append(os.path.join(self.install_libbase, self.path_file + ".pth")) - + return outputs def get_inputs (self): |