diff options
author | Tim Peters <tim.peters@gmail.com> | 2005-01-07 16:01:32 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2005-01-07 16:01:32 (GMT) |
commit | 5a9fb3c415d1204c7f2c12243ba5d46f5964dcbd (patch) | |
tree | c522f4e92f25037fe08318a3159743d1a21fb7ec /Lib/plat-mac | |
parent | e4f5600e5ca35feef87281090929cac7d8226388 (diff) | |
download | cpython-5a9fb3c415d1204c7f2c12243ba5d46f5964dcbd.zip cpython-5a9fb3c415d1204c7f2c12243ba5d46f5964dcbd.tar.gz cpython-5a9fb3c415d1204c7f2c12243ba5d46f5964dcbd.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/plat-mac')
-rwxr-xr-x | Lib/plat-mac/bundlebuilder.py | 2 | ||||
-rw-r--r-- | Lib/plat-mac/pimp.py | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/Lib/plat-mac/bundlebuilder.py b/Lib/plat-mac/bundlebuilder.py index e379544..03d8c81 100755 --- a/Lib/plat-mac/bundlebuilder.py +++ b/Lib/plat-mac/bundlebuilder.py @@ -110,7 +110,7 @@ class BundleBuilder(Defaults): # Verbosity level. verbosity = 1 - + # Destination root directory destroot = "" diff --git a/Lib/plat-mac/pimp.py b/Lib/plat-mac/pimp.py index 255b57c..21923ec 100644 --- a/Lib/plat-mac/pimp.py +++ b/Lib/plat-mac/pimp.py @@ -907,10 +907,10 @@ class PimpPackage_installer(PimpPackage): def installPackageOnly(self, output=None): """Install a single source package. - + If output is given it should be a file-like object and it will receive a log of what happened.""" - + if self._dict.has_key('Post-install-command'): return "%s: Installer package cannot have Post-install-command" % self.fullname() @@ -918,7 +918,7 @@ class PimpPackage_installer(PimpPackage): if _cmd(output, '/tmp', self._dict['Pre-install-command']): return "pre-install %s: running \"%s\" failed" % \ (self.fullname(), self._dict['Pre-install-command']) - + self.beforeInstall() installcmd = self._dict.get('Install-command') @@ -926,7 +926,7 @@ class PimpPackage_installer(PimpPackage): if '%' in installcmd: installcmd = installcmd % self.archiveFilename else: - installcmd = 'open \"%s\"' % self.archiveFilename + installcmd = 'open \"%s\"' % self.archiveFilename if _cmd(output, "/tmp", installcmd): return '%s: install command failed (use verbose for details)' % self.fullname() return '%s: downloaded and opened. Install manually and restart Package Manager' % self.archiveFilename |