[Buildbot-commits] buildbot/buildbot/steps transfer.py,1.4,1.5

Brian Warner warner at users.sourceforge.net
Fri Oct 13 09:08:27 UTC 2006


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

Modified Files:
	transfer.py 
Log Message:
[project @ transfer.py: fix a stupid error]

Original author: warner at lothar.com
Date: 2006-10-13 09:06:53

Index: transfer.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/steps/transfer.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- transfer.py	13 Oct 2006 07:29:58 -0000	1.4
+++ transfer.py	13 Oct 2006 09:08:25 -0000	1.5
@@ -129,7 +129,7 @@
         self.step_status.setColor('yellow')
         self.step_status.setText(['uploading', source])
 
-        fp = open(self.args['masterdest'],'w')
+        fp = open(self.masterdest, 'w')
         self.fileWriter = _FileWriter(fp)
 
         # default arguments





More information about the Commits mailing list