[Buildbot-commits] buildbot/buildbot/slave commands.py,1.63,1.64

Brian Warner warner at users.sourceforge.net
Fri Sep 15 14:49:08 UTC 2006


Update of /cvsroot/buildbot/buildbot/buildbot/slave
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv21539/buildbot/slave

Modified Files:
	commands.py 
Log Message:
[project @ File Upload/Download: minor cosmetic edits]

Original author: warner at lothar.com
Date: 2006-06-16 01:24:13

Index: commands.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/slave/commands.py,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -d -r1.63 -r1.64
--- commands.py	15 Sep 2006 14:49:00 -0000	1.63
+++ commands.py	15 Sep 2006 14:49:06 -0000	1.64
@@ -719,7 +719,7 @@
             d = self.writer.callRemote('close')
             d.addCallback(lambda _: self.finished())
             return
-        
+
         length = self.blocksize
         if self.maxsize is not None and length > self.maxsize:
             length = self.maxsize
@@ -821,7 +821,7 @@
             d = self.reader.callRemote('close')
             d.addCallback(lambda _: self.finished())
             return
-        
+
         length = self.blocksize
         if self.maxsize is not None and length > self.maxsize:
             length = self.maxsize
@@ -836,7 +836,7 @@
         else:
             d = self.reader.callRemote('read', length)
             d.addCallback(self._writeData)
-    
+
     def _writeData(self,data):
         if self.debug: log.msg('SlaveFileDownloadCommand._readBlock(): '+
                                                         'readlen=%d' % len(data))





More information about the Commits mailing list