[Buildbot-commits] buildbot/buildbot/process step.py,1.104,1.105

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


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

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

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

Index: step.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/process/step.py,v
retrieving revision 1.104
retrieving revision 1.105
diff -u -d -r1.104 -r1.105
--- step.py	15 Sep 2006 14:49:00 -0000	1.104
+++ step.py	15 Sep 2006 14:49:06 -0000	1.105
@@ -1075,7 +1075,7 @@
 
     def __init__(self,fp):
         self.fp = fp
-    
+
     def remote_close(self):
         """
         Called by remote slave to state that no more data will be transfered
@@ -1092,7 +1092,7 @@
     def __init__(self,fp, maxsize=None):
         FileIO.__init__(self,fp)
 	self.maxsize = maxsize
-    
+
     def remote_write(self,data):
 	"""
 	Called from remote slave to write L{data} to L{fp} within boundaries
@@ -1127,7 +1127,7 @@
 	"""
         if self.fp is None:
             return ''
-        
+
         data = self.fp.read(maxlength)
         return data
 
@@ -1275,7 +1275,7 @@
             self.step_status.setColor('green')
             return BuildStep.finished(self,SUCCESS)
         return self.reportFail()
-    
+
     def reportFail(self):
         self.step_status.setColor('red')
         return BuildStep.finished(self,FAILURE)





More information about the Commits mailing list