[Python-checkins] python/dist/src/Lib/plat-mac bundlebuilder.py, 1.36.10.1, 1.36.10.2 pimp.py, 1.35.4.3, 1.35.4.4

anthonybaxter@users.sourceforge.net anthonybaxter at users.sourceforge.net
Fri Jun 3 16:10:52 CEST 2005


Update of /cvsroot/python/python/dist/src/Lib/plat-mac
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32335/plat-mac

Modified Files:
      Tag: release24-maint
	bundlebuilder.py pimp.py 
Log Message:
whitespace normalisation

Index: bundlebuilder.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/bundlebuilder.py,v
retrieving revision 1.36.10.1
retrieving revision 1.36.10.2
diff -u -d -r1.36.10.1 -r1.36.10.2
--- bundlebuilder.py	31 Dec 2004 11:23:20 -0000	1.36.10.1
+++ bundlebuilder.py	3 Jun 2005 14:10:49 -0000	1.36.10.2
@@ -110,7 +110,7 @@
 
     # Verbosity level.
     verbosity = 1
-    
+
     # Destination root directory
     destroot = ""
 

Index: pimp.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/pimp.py,v
retrieving revision 1.35.4.3
retrieving revision 1.35.4.4
diff -u -d -r1.35.4.3 -r1.35.4.4
--- pimp.py	7 Jan 2005 13:48:49 -0000	1.35.4.3
+++ pimp.py	3 Jun 2005 14:10:49 -0000	1.35.4.4
@@ -907,10 +907,10 @@
 
     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 @@
             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 @@
             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



More information about the Python-checkins mailing list