[Python-checkins] python/dist/src/Lib/plat-mac bundlebuilder.py, 1.37, 1.38 pimp.py, 1.38, 1.39

tim_one at users.sourceforge.net tim_one at users.sourceforge.net
Fri Jan 7 17:02:03 CET 2005


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

Modified Files:
	bundlebuilder.py pimp.py 
Log Message:
Whitespace normalization.


Index: bundlebuilder.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/bundlebuilder.py,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -d -r1.37 -r1.38
--- bundlebuilder.py	27 Dec 2004 15:51:03 -0000	1.37
+++ bundlebuilder.py	7 Jan 2005 16:01:21 -0000	1.38
@@ -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.38
retrieving revision 1.39
diff -u -d -r1.38 -r1.39
--- pimp.py	7 Jan 2005 13:43:31 -0000	1.38
+++ pimp.py	7 Jan 2005 16:01:22 -0000	1.39
@@ -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