[Buildbot-commits] buildbot/buildbot buildset.py,1.7,1.8
Brian Warner
warner at users.sourceforge.net
Thu May 22 22:12:16 UTC 2008
Update of /cvsroot/buildbot/buildbot/buildbot
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv17042/buildbot
Modified Files:
buildset.py
Log Message:
[project @ #87:param-tweaks.patch]
Tweaks to use keyword arguments to make sure that builderName,
scheduler, and custom_props are passed appropriately.
Original author: dustin at v.igoro.us
Date: 2008-04-04 04:11:09+00:00
Index: buildset.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/buildset.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- buildset.py 22 May 2008 22:12:05 -0000 1.7
+++ buildset.py 22 May 2008 22:12:14 -0000 1.8
@@ -41,7 +41,8 @@
# create the requests
for b in builders:
req = base.BuildRequest(self.reason, self.source, b.name,
- self.scheduler, self.custom_props)
+ scheduler=self.scheduler,
+ custom_props=self.custom_props)
reqs.append((b, req))
self.requests.append(req)
d = req.waitUntilFinished()
More information about the Commits
mailing list